GlobalObjects
Lade ...
Suche ...
Keine Treffer
EuDef_NULL_PTR.h
gehe zur Dokumentation dieser Datei
1#ifndef INC_EUDEF_NULL_PTR_H
2#define INC_EUDEF_NULL_PTR_H
3
4//-----------------------------------------------------------------------------
43//-----------------------------------------------------------------------------
70#ifndef NULL_PTR
71 #if __cplusplus >= 201103L
72 #define NULL_PTR nullptr
73 #else
74 #define NULL_PTR NULL
75 #endif // __cplusplus >= 201703L
76#endif
77//-----------------------------------------------------------------------------
93typedef long long NUM_PTR;
94//-----------------------------------------------------------------------------
110#ifdef _MSC_VER
111 #if __cplusplus < 201103L
112 // warning C4481: Nicht dem Standard entsprechende Erweiterung: Spezifizierer "override" überschreiben.
113 #pragma warning( disable : 4481 )
114 #endif // __cplusplus < 201703L
115#endif
116//-----------------------------------------------------------------------------
117#endif
long long NUM_PTR
Definition EuDef_NULL_PTR.h:93