diff --git a/emper/Debug.hpp b/emper/Debug.hpp index bb7b730ec3175547a35ec4e693285421cfb298b7..dca6fe1c946d2dbb33ad5c24e84ec42fe9d81752 100644 --- a/emper/Debug.hpp +++ b/emper/Debug.hpp @@ -29,6 +29,13 @@ #define ABORT(x) do { std::stringstream sst; sst << x; logI(sst.str()); abort(); } while (false) +#define IGNORE_UNUSED_FUNCTION \ + _Pragma("GCC diagnostic push") \ + _Pragma("GCC diagnostic ignored \"-Wunused-function\"") + +#define POP_DIAGNOSTIC \ + _Pragma("GCC diagnostic pop") + enum class LogSubsystem { PS, F,