Avviso del compilatore (livello 1) C4180
il qualificatore applicato al tipo della funzione è privo di significato. È stato ignorato.
Un qualificatore, ad esempio const
, viene applicato a un tipo di funzione definito da typedef
.
Esempio
// C4180.cpp
// compile with: /W1 /c
typedef int FuncType(void);
// the const qualifier cannot be applied to the
// function type FuncType
const FuncType f; // C4180