diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2021-02-27 20:05:46 +0000 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2021-02-27 20:05:46 +0000 |
commit | 44c9d1660759fc60e0362325d9c00e89a56da945 (patch) | |
tree | 2c163a41c85e336ccc3f3dba40ef88aff613d49d | |
parent | Bump GCC version (diff) | |
download | ilt-44c9d1660759fc60e0362325d9c00e89a56da945.tar.bz2 ilt-44c9d1660759fc60e0362325d9c00e89a56da945.tar.xz ilt-44c9d1660759fc60e0362325d9c00e89a56da945.zip |
Handy log macro
-rw-r--r-- | utility/stream_support.hpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/utility/stream_support.hpp b/utility/stream_support.hpp index d40313d..1ee1661 100644 --- a/utility/stream_support.hpp +++ b/utility/stream_support.hpp @@ -37,4 +37,6 @@ namespace std { } } +#define CLOG(x) std::clog << #x " : " << x << "\n"; + #endif |