Upozornění kompilátoru (úroveň 1) C4180
kvalifikátor použitý na typ funkce nemá žádný význam; ignorovaný
Kvalifikátor, například const
, je použit na typ funkce definovaný .typedef
Příklad
// 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