Skip to content

Latest commit

 

History

History
24 lines (20 loc) · 475 Bytes

compiler-error-c2277.md

File metadata and controls

24 lines (20 loc) · 475 Bytes
description title ms.date f1_keywords helpviewer_keywords ms.assetid
Learn more about: Compiler Error C2277
Compiler Error C2277
11/04/2016
C2277
C2277
15a83b07-8731-4524-810b-267f65a7844f

Compiler Error C2277

'identifier' : cannot take address of this member function

You cannot take the address of a member function.

The following sample generates C2277:

// C2277.cpp
class A {
public:
   A();
};
(*pctor)() = &A::A;   // C2277