aboutsummaryrefslogtreecommitdiff
path: root/build2/diagnostics.hxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2017-07-22 17:43:09 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2017-07-22 17:43:09 +0200
commit8b98a6b3fae40487ac529a7118865df6a71159ee (patch)
treedcdc0a13ccec81c087ed05a9ebfe5cac3d56b955 /build2/diagnostics.hxx
parentade763571a19b5e222ac626a6b3bc10685e542a1 (diff)
Implement detection of ignorable changes (whitespaces, comments)
Diffstat (limited to 'build2/diagnostics.hxx')
-rw-r--r--build2/diagnostics.hxx1
1 files changed, 1 insertions, 0 deletions
diff --git a/build2/diagnostics.hxx b/build2/diagnostics.hxx
index 1e76099..1b8f370 100644
--- a/build2/diagnostics.hxx
+++ b/build2/diagnostics.hxx
@@ -60,6 +60,7 @@ namespace build2
// While uint8 is more than enough, use uint16 for the ease of printing.
//
extern uint16_t verb;
+ const uint16_t verb_never = 7;
template <typename F> inline void l1 (const F& f) {if (verb >= 1) f ();}
template <typename F> inline void l2 (const F& f) {if (verb >= 2) f ();}