'operator operator'에 형식 매개 변수가 너무 많습니다.
비고
오버로드된 연산자에 매개 변수가 너무 많습니다.
Example
다음 예제에서는 C2806을 생성합니다.
// C2806.cpp
// compile with: /c
class X {
public:
X operator++ ( int, int ); // C2806 more than 1 parameter
X operator++ ( int ); // OK
} ;