Avertissement du compilateur (niveau 1) C4180
qualificateur appliqué au type fonction n'a pas de sens ; ignoré
Un qualificateur, tel que const
, est appliqué à un type de fonction défini par typedef
.
Exemple
// 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