Compiler Warning (level 1) C4227
Visual Studio 2005
Error Message
anachronism used : qualifiers on reference are ignoredUsing qualifiers like const or volatile with C++ references is an outdated practice.
Example
// C4227.cpp // compile with: /W1 /c int j = 0; int &const i = j; // C4227