Skip to content

Latest commit

 

History

History
22 lines (18 loc) · 497 Bytes

compiler-error-c2671.md

File metadata and controls

22 lines (18 loc) · 497 Bytes
description title ms.date f1_keywords helpviewer_keywords ms.assetid
Learn more about: Compiler Error C2671
Compiler Error C2671
11/04/2016
C2671
C2671
fc0ee40f-c8f3-408f-b89d-745d149c4169

Compiler Error C2671

'function' : static member functions do not have 'this' pointers

A static member function tried to access this.

The following sample generates C2671:

// C2671.cpp
struct S {
   static S* const func() { return this; }  // C2671
};