diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2023-03-11 12:05:57 +0000 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2023-03-11 12:05:57 +0000 |
commit | 5dc841c1a4428f1a1ea353583e3b51ea24b4c608 (patch) | |
tree | e0f26da7b351d7608944dbee49a3426287303194 /lib/stream_support.hpp | |
parent | Swap messy glmvec wrapper for OpenMesh Point/Normal with real glm::vec and a ... (diff) | |
download | ilt-5dc841c1a4428f1a1ea353583e3b51ea24b4c608.tar.bz2 ilt-5dc841c1a4428f1a1ea353583e3b51ea24b4c608.tar.xz ilt-5dc841c1a4428f1a1ea353583e3b51ea24b4c608.zip |
CLOG includes line number
Diffstat (limited to 'lib/stream_support.hpp')
-rw-r--r-- | lib/stream_support.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/stream_support.hpp b/lib/stream_support.hpp index 6a3c2cf..52cc9d9 100644 --- a/lib/stream_support.hpp +++ b/lib/stream_support.hpp @@ -83,4 +83,4 @@ streamed_string(const T & v) return std::move(ss).str(); } -#define CLOG(x) std::cerr << #x " : " << x << "\n"; +#define CLOG(x) std::cerr << __LINE__ << " : " #x " : " << x << "\n"; |