FIX: 'using' Declaration Doesn't Overload Base Class Members (140604)



The information in this article applies to:

  • Microsoft Visual C++, 32-bit Editions 4.0
  • Microsoft Visual C++, 32-bit Editions 4.1
  • Microsoft Visual C++, 32-bit Enterprise Edition 4.2
  • Microsoft Visual C++, 32-bit Enterprise Edition 5.0
  • Microsoft Visual C++, 32-bit Enterprise Edition 6.0
  • Microsoft Visual C++, 32-bit Professional Edition 4.2
  • Microsoft Visual C++, 32-bit Professional Edition 5.0
  • Microsoft Visual C++, 32-bit Professional Edition 6.0
  • Microsoft Visual C++, 32-bit Learning Edition 6.0

This article was previously published under Q140604

SYMPTOMS

Attempting to overload member functions located in a base class from a derived class with a 'using' declaration, may result in the following compiler error:
error C2664: 'function': cannot convert parameter 'number' from 'type1' to 'type2'

CAUSE

This particular problem occurs if the member functions that are being overloaded are declared before the 'using' declaration in the class definition.

RESOLUTION

Place the 'using' declaration above the declarations for the member functions you want to overload. See the comments in the following code sample:

Sample Code

#include "iostream.h"

class A
{
public:
   int f(int) {cout << "In A::f(int)!!!\n";return 0;}
};

class B : public A
{
public:
   int f(char*){cout << "In D::f(char*)!!!\n";return 0;}
   using A::f;        // <<== move this above the int f(char*)
                      //  declaration to fix the problem.
};

void main()
{
   B d;
   d.A::f(1);
   d.f(1);            // <<== C2664 happens here
   d.f("Hi There");
}
				

STATUS

Microsoft has confirmed this to be a bug in the Microsoft products listed at the beginning of this article.

This problem was corrected in Microsoft Visual C++ .NET.

REFERENCES

For more information on the 'using' declaration, please see:

\Visual C++ Books\C/C++\C++ Language\Reference\Declarations\ Namespaces\using Declaration


Modification Type:MinorLast Reviewed:7/5/2005
Keywords:kbBug kbCompiler kbfix kbNoUpdate KB140604