FIX: C2974 When Explicitly Call Class Template('s) Destructor (130551)
The information in this article applies to:
- Microsoft Visual C++, 32-bit Professional Edition 2.0
- Microsoft Visual C++, 32-bit Professional Edition 2.1
This article was previously published under Q130551 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.
Modification Type: | Minor | Last Reviewed: | 7/5/2005 |
---|
Keywords: | kbbug kbfix KB130551 |
---|
|