BUG: C1001 Generated Using typedef for Member Functions

Last reviewed: December 15, 1995
Article ID: Q116442
The information in this article applies to:
  • The Microsoft C/C++ Compiler (CL.EXE), included with:

        - Microsoft C/C++ for MS-DOS, version 7.0
        - Microsoft Visual C++ for Windows, versions 1.0 and 1.5
        - Microsoft Visual C++ 32-bit Edition, versions 1.0 and 2.0
    

SYMPTOMS

When you compile C++ code that uses a typedef for member functions:

  • If the code is compiled with C/C++ Compiler for MS-DOS, version 8.0c, and you use the /Fr or /FR compiler option, the following error message is generated:

          fatal error C1001: internal compiler error
    
                (compiler file 'msc1.cpp', line 585)
    
    
  • If the code is compiled with the C/C++ Compiler for Windows NT, version 8.0, and you use the /Fr or /FR compiler option, the following error message is generated:

          fatal error C1001: INTERNAL COMPILER ERROR
    
             (compiler file 'msc1.cpp', line 602)
             Please choose the Technical Support command on the Visual
             Workbench Help menu, or open the Technical Support help file
             for more information
    
    
  • If neither the /Fr or /FR option is used, the C/C++ Compiler for MS-DOS, version 8.0c, and the C/C++ Compiler for Windows NT, version 8.0, do not generate the C1001 error message; however, the member functions are not prototyped correctly.
  • Regardless of the compiler option used, the C/C++ Compiler for MS-DOS, versions 7.0 and 8.0, do not generate the C1001 error; however, the member functions are not prototyped correctly.

RESOLUTION

To work around this problem, do one of the following:

  • Compile the code without the /Fr or /FR option.

    -or-

  • Prototype the functions without the typedef.

STATUS

Microsoft has confirmed this to be a bug in the products listed at the beginning of this article. We are researching this bug and will post new information here in the Microsoft Knowledge Base as it becomes available.

MORE INFORMATION

You can use the following sample code to demonstrate this problem. If one of the workarounds is used, then the error message generated is:

      error C2511: 'memberFunc' : overloaded member function not found in
            'CClassName'

Sample Code

/* Compile options needed: /Fr or /FR
*/

   typedef void VOIDFUNC(void);

   class CClassName
   {
      VOIDFUNC memberFunc;
   };

   void CClassName::memberFunc(void)
   {
   }


Additional reference words: 7.00 8.00 8.00c 9.00 1.00 1.50 2.00 noupdate
KBCategory: kbtool kbbuglist
KBSubcategory: CPPIss


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: December 15, 1995
© 1998 Microsoft Corporation. All rights reserved. Terms of Use.