共用方式為


編譯器警告 (層級 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