Skip to content

Commit

Permalink
formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
nam20485 committed May 3, 2024
1 parent 6fd33da commit 374cf20
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Utils/macros.h
Original file line number Diff line number Diff line change
Expand Up @@ -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
}

Expand Down

0 comments on commit 374cf20

Please sign in to comment.