Partilhar via


Aviso do Compilador (nível 1) C4180

qualificador aplicado a um tipo de função não tem significado; ignorado

Um qualificador, como const, é aplicado a um tipo de função definido por typedef.

Exemplo

// 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