FIX: C2974 When Explicitly Call Class Template('s) Destructor

Last reviewed: September 18, 1997
Article ID: Q130551
2.00 2.10 WINDOWS NT kbtool kbfixlist

The information in this article applies to:

  • The Microsoft C/C++ Compiler (CL.EXE), included with: Microsoft Visual C++, 32-bit Edition, versions 2.0 and 2.1

SYMPTOMS

When you explicitly call a class template destructor, and the class object is instantiated with a user defined class in a C++ program, the compiler generates the following compiler errors:

   Error C2974 : 'B' : invalid template actual argument '#1',
                       type expected
   Error C2039 : 'B<int>' : is not a member of 'B<class A>'

For example, this can happen when you use MFC's collection classes and need to overload the DestroyElement() helper function, in which the class destructor can be explicitly called.

RESOLUTION

The following code can be used to work around the problem.

Problem:

   B<A> a;
   a.B<A>::~B();

Workaround:

   B<A> a;
   a.B< class A >::~B();

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 to Demonstrate Problem

/* Compile options needed: none.
*/

class A { public:
   A() {}
   ~A() {}
};

template < class T > class B { public:

   B() {}
   ~B() {}
};

void main()
{
   B<A> a;
   // Workaround: change the following line into a comment
   // and change the line after that into an executed line of code.
   a.B<A>::~B();
   // a.B<class A>::~B();
}


Additional reference words: 9.00 2.00 2.10 9.10
KBCategory: kbtool kbfixlist kbbuglist
KBSubCategory: CPPIss
Keywords : kbbuglist kbfixlist kbtool
Version : 2.00 2.10
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.