diff options
author | crupest <crupest@outlook.com> | 2019-03-21 22:22:02 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2019-03-21 22:22:02 +0800 |
commit | 962dc18ee4827b464764ec3708be3d00a9143971 (patch) | |
tree | 3eea13894a14a26f2e2de07d3d6bc7789d409864 /src/cru_debug.hpp | |
parent | afa2a079562d810e5ef611071b21a3568da9dfca (diff) | |
download | cru-962dc18ee4827b464764ec3708be3d00a9143971.tar.gz cru-962dc18ee4827b464764ec3708be3d00a9143971.tar.bz2 cru-962dc18ee4827b464764ec3708be3d00a9143971.zip |
...
Diffstat (limited to 'src/cru_debug.hpp')
-rw-r--r-- | src/cru_debug.hpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/cru_debug.hpp b/src/cru_debug.hpp index 9c22a24f..58431d56 100644 --- a/src/cru_debug.hpp +++ b/src/cru_debug.hpp @@ -7,7 +7,11 @@ #include "util/format.hpp" namespace cru::debug { +#ifdef CRU_DEBUG void DebugMessage(const StringView& message); +#else +inline void DebugMessage(const StringView& message) {} +#endif #ifdef CRU_DEBUG inline void DebugTime(const std::function<void()>& action, |