Compiler Warning (level 1) C4227

anachronism used : qualifiers on reference are ignored

Here anachronism means an outdated usage. You should avoid using qualifiers like const or volatile with C++ references as this example shows:

int j = 0;
int &const i = j; /* warning C4227 */