编译器警告(等级 1)C4180

应用到函数类型的限定符没有意义;已将其忽略

已将限定符(如 const)应用于 typedef 定义的函数类型。

示例

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