From 374cf20bf69ea1dd6ada7b257de40b8ba0e07744 Mon Sep 17 00:00:00 2001 From: Nathan Miller Date: Fri, 3 May 2024 14:22:16 -0700 Subject: [PATCH] formatting --- Utils/macros.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Utils/macros.h b/Utils/macros.h index fd1b580d..b8fd4eec 100644 --- a/Utils/macros.h +++ b/Utils/macros.h @@ -9,18 +9,18 @@ namespace Utils constexpr static inline bool IsMsvc() { #if defined(_MSC_VER) - return true; + return true; #else - return false; + return false; #endif } constexpr static inline bool IsDebug() { #if defined(_DEBUG) - return true; + return true; #else - return false; + return false; #endif }