FIX: Compiler May Generate Invalid Errors for Local Classes

Last reviewed: September 18, 1997
Article ID: Q116486
1.00 1.50 | 1.00 2.00
WINDOWS   | WINDOWS NT
kbtool kbfixlist

The information in this article applies to:

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

        - Microsoft Visual C++ for Windows, versions 1.0 and 1.5
        - Microsoft Visual C++, 32-bit Edition, versions 1.0 and 2.0
    

SYMPTOMS

The compiler may incorrectly generate the following error messages when compiling code that declares a local class that derives virtually from another class:

    C2517: 'identifier' : right of '::' is undefined
    C2270: 'identifier' : modifiers not allowed on nonmember functions
    C2561: 'identifier' : function must return a value

Under Visual C++ version 2.0, the following errors are generated:

   C2653: 'identifier' : is not a class name
   C2561: 'identifier' : function must return a value

You can use the sample code in the "MORE INFORMATION" section, below, to illustrate this problem.

RESOLUTION

To avoid the error messages, either do not derive the local class virtually or do not declare both the parent and the derived class as local classes.

STATUS

Microsoft has confirmed this to be a bug in the Microsoft products listed at the beginning of this article. This problem was fixed in Microsoft Visual C++, 32-bit Edition, version 4.0.

MORE INFORMATION

Sample Code

/* Compile options needed: none
*/

   void main()
   {
       class B { public: int bi; };             // Class local to main
       class D : virtual public B { int di; };      // Class derived from
                                                // Local class B
       D d;
   }


Additional reference words: 8.00 8.00c 9.00 1.00 1.50 2.00
KBCategory: kbtool kbbuglist kbfixlist
KBSubcategory: CPPIss
Keywords : CPPIss kbbuglist kbfixlist kbtool
Version : 1.00 1.50 | 1.00 2.00
Platform : NT WINDOWS
Solution Type : kbfix


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: September 18, 1997
© 1998 Microsoft Corporation. All rights reserved. Terms of Use.