#pragma once /*! * @file assert.h * Wrapper around . */ #if defined NDEBUG && defined _WIN32 #pragma push_macro("NDEBUG") #undef NDEBUG #undef assert #include #pragma pop_macro("NDEBUG") #else #include #endif #define ASSERT assert