FIX: C2974 When Explicitly Call Class Template('s) DestructorLast reviewed: September 18, 1997Article ID: Q130551 |
2.00 2.10
WINDOWS NT
kbtool kbfixlist
The information in this article applies to:
SYMPTOMSWhen 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.
RESOLUTIONThe 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(); STATUSMicrosoft 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
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |