DOCUMENT:Q130551 25-JUL-2001 [visualc] TITLE :FIX: C2974 When Explicitly Call Class Template('s) Destructor PRODUCT :Microsoft C Compiler PROD/VER::2.0,2.1 OPER/SYS: KEYWORDS:kbbuglist kbfixlist ====================================================================== ------------------------------------------------------------------------------- The information in this article applies to: - Microsoft C/C++ Compiler (CL.EXE), included with: - *EDITOR Please do not choose this product*Microsoft Visual C++ 32-bit Edition* use 241, 265, 225, versions 2.0, 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' : is not a member of 'B' 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.B::~B(); Workaround: B 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; // Workaround: change the following line into a comment // and change the line after that into an executed line of code. a.B::~B(); // a.B::~B(); } Additional query words: 9.00 2.00 2.10 9.10 ====================================================================== Keywords : kbbuglist kbfixlist Technology : kbVCsearch kbAudDeveloper kbCVCComp Version : :2.0,2.1 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. Copyright Microsoft Corporation 2001.