From 1c64e9f4a2d1640cec5448d1c5d7e5530f6728c1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Johel=20Ernesto=20Guerrero=20Pe=C3=B1a?= Date: Sat, 22 Aug 2020 16:06:51 -0400 Subject: [PATCH] refactor: remove Expects macro --- src/include/units/bits/external/hacks.h | 7 ------- 1 file changed, 7 deletions(-) diff --git a/src/include/units/bits/external/hacks.h b/src/include/units/bits/external/hacks.h index 2d3ec9b1..0abc58b4 100644 --- a/src/include/units/bits/external/hacks.h +++ b/src/include/units/bits/external/hacks.h @@ -31,13 +31,6 @@ #define COMP_GCC_MINOR __GNUC_MINOR__ #endif -#ifdef NDEBUG -#define Expects(cond) (void)(cond); -#else -#include -#define Expects(cond) assert(cond); -#endif - #if COMP_GCC >= 10 #include