FIX: C1001 on Template Class of Type Pointer to Function

Last reviewed: September 19, 1997
Article ID: Q142787
The information in this article applies to:
  • The compiler included with: Microsoft Visual C++, 32-bit Edition, versions 4.0, 4.1, 4.2

SYMPTOMS

When instantiating a template class of type pointer to function and then using it as demonstrated in the sample code in the Samples section of this article, you may see the following internal compiler error:

   fatal error C1001: INTERNAL COMPILER ERROR
   (compiler file 'msc1.cpp', line 899)
   Please choose the Technical Support command on the Visual C++
   Help menu, or open the Technical Support help file for more
   information

RESOLUTION

The syntax for instantiating a template class of type pointer to function is:

   TS<void (*)(float)> pf ;

where TS is the name of class template, and pf is the name of the template class being instantiated. You can now instantiate objects of type pf and use them to call functions that accept a float as an argument and return void.

STATUS

Microsoft has confirmed this to be a bug in the Microsoft products listed at the beginning of this article. This bug was corrected in Visual C++ version 5.0.

MORE INFORMATION

The following sample code demonstrates the problem and generates the internal compiler error C1001. The workaround is shown in the comments in the sample code.

Sample Code

   /* Compile options needed: none
   */
      #include <iostream.h>

      template <class T>
      struct TS
      {
        void TestType(void);
        TS(void) { TestType(); }
      };

     void f(float x)
     {
        cout << "x = " << x << endl ;
     }

     template <class T>
     void TS<T>::TestType(void)
     {
        T t;
        t(2.2); // this line generates a C1001
     }

     void main(void)
     {

       TS<void *(float)> pf;   // this line actually causes the error

       //  Workaround: change the previous line to look like this:
       //  TS<void (*)(float)> pf ;
     }


Additional query words: 10.0 10.10 10.20

Keywords : CLIss vcbuglist400 vcfixlist500 kbtool
Version : 4.0 4.1 4.2s
Platform : NT WINDOWS
Issue type : kbbug
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 19, 1997
© 1998 Microsoft Corporation. All rights reserved. Terms of Use.