summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorDan Goodliffe <dan@randomdan.homeip.net>2023-03-11 12:05:57 +0000
committerDan Goodliffe <dan@randomdan.homeip.net>2023-03-11 12:05:57 +0000
commit5dc841c1a4428f1a1ea353583e3b51ea24b4c608 (patch)
treee0f26da7b351d7608944dbee49a3426287303194 /lib
parentSwap messy glmvec wrapper for OpenMesh Point/Normal with real glm::vec and a ... (diff)
downloadilt-5dc841c1a4428f1a1ea353583e3b51ea24b4c608.tar.bz2
ilt-5dc841c1a4428f1a1ea353583e3b51ea24b4c608.tar.xz
ilt-5dc841c1a4428f1a1ea353583e3b51ea24b4c608.zip
CLOG includes line number
Diffstat (limited to 'lib')
-rw-r--r--lib/stream_support.hpp2
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";