Go back to Richel Bilderbeek's homepage.

Go back to Richel Bilderbeek's C++ page.

 

 

 

 

 

(C++) Only member functions may be 'const' or 'volatile'

 

Compile error.

 

 

 

 

 

Full error message

 

[C++ Error] Main.cpp(2): E2310 Only member functions may be 'const' or 'volatile'
[C++ Error] Main.cpp(7): E2310 Only member functions may be 'const' or 'volatile'

 

 

 

 

 

Cause

 

IDE: C++ Builder 6.0

Compiler: Borland BCC32.EXE version 6.0.10.157

Project type: Console

 

void X() const
{
 
}
 
void Y() volatile
{
 
}
 
int main()
{
 
}

 

 

 

 

 

Solution

 

Remove the const or volatile.

 

 

 

 

 

Go back to Richel Bilderbeek's C++ page.

Go back to Richel Bilderbeek's homepage.

 

Valid XHTML 1.0 Strict