diff --git a/include/logger.hpp b/include/logger.hpp index eec3b400..2ec69699 100644 --- a/include/logger.hpp +++ b/include/logger.hpp @@ -17,7 +17,6 @@ namespace Log { } }; -#define false 0 // Our loggers here. Enable/disable by toggling the template param static Logger kernelLogger; static Logger debugStringLogger; // Enables output for the outputDebugString SVC @@ -52,11 +51,10 @@ namespace Log { static Logger ptmLogger; static Logger y2rLogger; static Logger srvLogger; -#undef false #define MAKE_LOG_FUNCTION(functionName, logger) \ template \ void functionName(const char* fmt, Args... args) { \ Log::logger.log(fmt, args...); \ } -} \ No newline at end of file +}