2
0
mirror of https://github.com/Laupetin/OpenAssetTools.git synced 2025-06-27 23:01:55 +00:00

Add base for calculation sizes of structs for StructuredDataDef

This commit is contained in:
Jan
2022-03-22 14:12:48 +01:00
parent c131c58bbe
commit 77420495f6
4 changed files with 190 additions and 1 deletions

View File

@ -16,10 +16,16 @@
#undef _NODISCARD
#endif
#ifdef _NORETURN
#undef _NORETURN
#endif
#if _CPP_VERSION >= 201703L
#define _NODISCARD [[nodiscard]]
#define _NORETURN [[noreturn]]
#else
#define _NODISCARD
#define _NORETURN
#endif
template <class T>