aboutsummaryrefslogtreecommitdiff
path: root/src/cru_debug.hpp
diff options
context:
space:
mode:
authorcrupest <crupest@outlook.com>2019-03-21 22:22:02 +0800
committercrupest <crupest@outlook.com>2019-03-21 22:22:02 +0800
commit962dc18ee4827b464764ec3708be3d00a9143971 (patch)
tree3eea13894a14a26f2e2de07d3d6bc7789d409864 /src/cru_debug.hpp
parentafa2a079562d810e5ef611071b21a3568da9dfca (diff)
downloadcru-962dc18ee4827b464764ec3708be3d00a9143971.tar.gz
cru-962dc18ee4827b464764ec3708be3d00a9143971.tar.bz2
cru-962dc18ee4827b464764ec3708be3d00a9143971.zip
...
Diffstat (limited to 'src/cru_debug.hpp')
-rw-r--r--src/cru_debug.hpp4
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,