Compiler Error C2751
Visual Studio 2015
The new home for Visual Studio documentation is Visual Studio 2017 Documentation on docs.microsoft.com.
The latest version of this topic can be found at Compiler Error C2751.
parameter' : the name of a function parameter cannot be qualified
You cannot use a qualified name as a function parameter.
The following sample generates C2751:
// C2751.cpp
namespace std {
template<typename T>
class list {};
}
#define list std::list
void f(int &list){} // C2751
Show: