From e831d9f0e513ceb031b47bda867d5d78b3822c5c Mon Sep 17 00:00:00 2001 From: wheremyfoodat <44909372+wheremyfoodat@users.noreply.github.com> Date: Sat, 3 Jun 2023 01:43:46 +0300 Subject: [PATCH] Update logger.hpp --- include/logger.hpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) 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 +}