Compiler Warning (level 1) C4630
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 Warning (level 1) C4630.
symbol' : 'extern' storage class specifier illegal on member definition
A data member or member function is defined as extern. Members cannot be external, although entire objects can. The compiler ignores the extern keyword. The following sample generates C4630:
// C4630.cpp
// compile with: /W1 /LD
class A {
void func();
};
extern void A::func() { // C4630, remove 'extern' to resolve
}
Show: