应用到函数类型的限定符没有意义;已将其忽略
注解
已将限定符(如 const)应用于 typedef 定义的函数类型。
示例
以下示例生成 C4180:
// 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
应用到函数类型的限定符没有意义;已将其忽略
已将限定符(如 const)应用于 typedef 定义的函数类型。
以下示例生成 C4180:
// 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