编译器错误 C2809

“operator operator”没有形参

运算符缺少必需的参数。

以下示例生成 C2809:

// C2809.cpp
// compile with: /c
class A{};
int operator+ ();   // C2809
int operator+ (A);   // OK