Skip to content

Latest commit

 

History

History
30 lines (25 loc) · 693 Bytes

compiler-warning-level-2-c4285.md

File metadata and controls

30 lines (25 loc) · 693 Bytes
description title ms.date f1_keywords helpviewer_keywords ms.assetid
Learn more about: Compiler Warning (level 2) C4285
Compiler Warning (level 2) C4285
11/04/2016
C4285
C4285
fa14de1f-fc19-4eec-8bea-81003636e12f

Compiler Warning (level 2) C4285

return type for 'identifier::operator ->' is recursive if applied using infix notation

The specified operator->() function cannot return the type for which it is defined or a reference to the type for which it is defined.

The following sample generates C4285:

// C4285.cpp
// compile with: /W2
class C
{
public:
    C operator->();   // C4285
   // C& operator->();  C4285, also
};

int main()
{
}