PRB: C2146, C2065, C2143 Instantiating Template Class Objects

Last reviewed: July 24, 1997
Article ID: Q155420
The information in this article applies to:

- The Microsoft C/C++ Compiler (CL.EXE) included with:

  - Microsoft Visual C++, 32-bit Edition, versions 4.0, 4.1, 4.2, 5.0

SYMPTOMS

The compiler generates error C2146 followed by C2065 and finally C2143, all pointing to the same line in the source.

This sequence of errors can be caused by the following type of construct:

   ClassA<int, ClassB<int>> iA ;

The problem is caused by the consecutive closing chevrons “>>” at the end of the declaration.

RESOLUTION

The solution is to put a space between the consecutive >>, so the above code becomes:

     ClassA<int, ClassB<int> > iA ;

This is not a compiler bug. The language specification requires the space between the two “>”; otherwise, the lexical parser generates the token “>>”, which is the largest possible token.

Sample Code

   //Compile options needed: none
   // test.cpp

   template <class T>
   class ClassB {} ;

   template <class T1, class T2>
   class ClassA{} ;

   void main()
   {
       ClassA<int, ClassB<int>> iA; // causes C2146, C2065, C2143
       //ClassA<int, ClassB<int> > iA;  //workaround

   }
 

	
	


Keywords : CPPIss
Version : 4.0 4.1 4.2 5.0
Platform : NT WINDOWS
Issue type : kbprb


THE INFORMATION PROVIDED IN THE MICROSOFT KNOWLEDGE BASE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. MICROSOFT DISCLAIMS ALL WARRANTIES, EITHER EXPRESS OR IMPLIED, INCLUDING THE WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL MICROSOFT CORPORATION OR ITS SUPPLIERS BE LIABLE FOR ANY DAMAGES WHATSOEVER INCLUDING DIRECT, INDIRECT, INCIDENTAL, CONSEQUENTIAL, LOSS OF BUSINESS PROFITS OR SPECIAL DAMAGES, EVEN IF MICROSOFT CORPORATION OR ITS SUPPLIERS HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. SOME STATES DO NOT ALLOW THE EXCLUSION OR LIMITATION OF LIABILITY FOR CONSEQUENTIAL OR INCIDENTAL DAMAGES SO THE FOREGOING LIMITATION MAY NOT APPLY.

Last reviewed: July 24, 1997
© 1998 Microsoft Corporation. All rights reserved. Terms of Use.