FIX: Ambiguous C2966 Error with Nested Template Classes

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

SYMPTOMS

An ambiguous C2966 error is generated if any members of a nested template class are defined externally. The sample code shown in the "More Information" section of this article reproduces this problem and gives the following error message:

   error C2966: '<Unknown>' : adding member function of same name as
                existing static data member for template class 'Outer'

RESOLUTION

Define members of a nested template class inline only.

NOTE: external definitions with the inline keyword will still generate the ambiguous C2966 error.

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

Sample Code to Reproduce Problem

   // Compile option needed: none

   template<class T> class Outer {
     public:
         class Inner {
         public:
             static T sobj;
             static T smfunc(T arg);
    };

     };

     //Initialize nested class static object

     template <class T> T Outer<T>::Inner::sobj = T();

     // Out-of-line definition of nested class static member function
     // Moving this definition inside class resolves the error
    template <class T> T Outer<T>::Inner::smfunc(T arg)
    {
       return arg + sobj;
    }


Additional query words: 10.00 10.10 10.20

Keywords : CPPLangIss vcbuglist400 vcfixlist500 kbtool
Version : 2.0 2.1 2.2 4.0 4.1 4.2
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 18, 1997
© 1998 Microsoft Corporation. All rights reserved. Terms of Use.