diff --git a/src/global.hpp b/src/global.hpp index 04a585230..f287743ad 100644 --- a/src/global.hpp +++ b/src/global.hpp @@ -48,6 +48,6 @@ inline void LOG(std::string line) { std::cout << line << std::endl; } -#define LOG_VALUE(x) std::cout << #x << ": " << x << std::endl; +#define LOG_VALUE(x) std::cout << #x << ": " << (x) << std::endl; #endif