Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
anachronism used : qualifiers on reference are ignored
Using 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