make LOG_VALUE work with polynomial expressions

This commit is contained in:
2025-01-11 21:11:42 -06:00
committed by Celtic Minstrel
parent 9739ab2f61
commit 11b9683252

View File

@@ -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