mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-06-11 07:18:11 -05:00
Add ZCG cpp domain classes
This commit is contained in:
@ -1,3 +1,17 @@
|
||||
#pragma once
|
||||
|
||||
#define STR(x) #x
|
||||
#define STR(x) #x
|
||||
|
||||
#if defined(_MSVC_LANG)
|
||||
#define _CPP_VERSION _MSVC_LANG
|
||||
#elif defined(__cplusplus)
|
||||
#define _CPP_VERSION __cplusplus
|
||||
#else
|
||||
#define _CPP_VERSION 0
|
||||
#endif
|
||||
|
||||
#if _CPP_VERSION >= 201703L
|
||||
#define _NO_DISCARD [[nodiscard]]
|
||||
#else
|
||||
#define _NO_DISCARD
|
||||
#endif
|
Reference in New Issue
Block a user