Compiler Error C2272

 

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 C2272.

function' : modifiers not allowed on static member functions

A static member function is declared with a memory-model specifier, such as const or volatile, and such modifiers are not allowed on static member functions.

The following sample generates C2272:

// C2272.cpp  
// compile with: /c  
class CMyClass {  
public:  
   static void func1() const volatile;   // C2272  func1 is static  
   void func2() const volatile;   // OK  
};  

Show: