BUG: Default Constructor Argument Cannot Use Namespace Scope

Last reviewed: April 24, 1997
Article ID: Q167350
The information in this article applies to:
  • Microsoft Visual C++, 32-bit Editions, version 5.0

SYMPTOMS

When you give the default argument value for a class constructor a value that references a namespace via the '::' operator, a C2065 error occurs as follows:

   [FileName](12) : error C2065: 'inside' : undeclared identifier

RESOLUTION

To work around this, use either the using directive to instruct the compiler to consider the namespace as a possible place to find all symbols, or the using declaration to tell the compiler to consider the namespace for the specific symbol that is referenced by the default argument. Please see the workarounds noted in the sample code below. Note that these workarounds make it unnecessary to use the '::' operator to explicitly reference the namespace, but it is also not necessary to remove it.

STATUS

Microsoft has confirmed this to be a bug in the Microsoft products listed at the beginning of this article. We are researching this bug and will post new information here in the Microsoft Knowledge Base as it becomes available.

MORE INFORMATION

Sample Code

   /* Compile Options Needed: None */
   namespace MyNameSpace {
   int inside = 34;
   };

   // Uncomment the following to workaround via the using declaration
   //using MyNameSpace::inside;
   // Uncomment the following to workaround via the using directive
   //using namespace MyNameSpace;

   class MyClass {
   public:
   MyClass(int iVal = MyNameSpace::inside);
   };

When you compile the code above, the following error message appears:

   [FileName](12) : error C2065: 'inside' : undeclared identifier


Additional query words: namespace
Keywords : CPPIss kbtool vcbuglist500 kbbuglist
Version : 5.0
Platform : NT WINDOWS
Issue type : kbbug


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: April 24, 1997
© 1998 Microsoft Corporation. All rights reserved. Terms of Use.