refactor: remove Expects macro

This commit is contained in:
Johel Ernesto Guerrero Peña
2020-08-22 16:06:51 -04:00
committed by Mateusz Pusz
parent 653a090a8a
commit 1c64e9f4a2

View File

@ -31,13 +31,6 @@
#define COMP_GCC_MINOR __GNUC_MINOR__ #define COMP_GCC_MINOR __GNUC_MINOR__
#endif #endif
#ifdef NDEBUG
#define Expects(cond) (void)(cond);
#else
#include <cassert>
#define Expects(cond) assert(cond);
#endif
#if COMP_GCC >= 10 #if COMP_GCC >= 10
#include <concepts> #include <concepts>