Add information and computations to ZCG cpp

This commit is contained in:
Jan
2021-02-08 14:33:57 +01:00
parent 65cf1ef9c2
commit 3b716965a5
33 changed files with 876 additions and 54 deletions

View File

@ -10,8 +10,10 @@
#define _CPP_VERSION 0
#endif
#ifndef _NODISCARD
#if _CPP_VERSION >= 201703L
#define _NO_DISCARD [[nodiscard]]
#define _NODISCARD [[nodiscard]]
#else
#define _NO_DISCARD
#define _NODISCARD
#endif
#endif