Skip to content

Latest commit

 

History

History
22 lines (18 loc) · 531 Bytes

compiler-warning-level-1-c4227.md

File metadata and controls

22 lines (18 loc) · 531 Bytes
description title ms.date f1_keywords helpviewer_keywords ms.assetid
Learn more about: Compiler Warning (level 1) C4227
Compiler Warning (level 1) C4227
11/04/2016
C4227
C4227
78f98374-c00b-4000-aefa-1b1c67b4666b

Compiler Warning (level 1) C4227

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