aboutsummaryrefslogtreecommitdiff
path: root/bpkg/diagnostics
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2015-09-29 11:29:50 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2015-09-29 11:29:50 +0200
commitf5adc6c0ee7965abcad4cc73d0f36d1ed3cba3cc (patch)
tree209d8b593efc5cf525ae96f6bf69b356cdba9766 /bpkg/diagnostics
parentbbc1acd6e9e086c5bcfccac971c8ca4edd192765 (diff)
Complete pkg-status, rework object model
Diffstat (limited to 'bpkg/diagnostics')
-rw-r--r--bpkg/diagnostics2
1 files changed, 1 insertions, 1 deletions
diff --git a/bpkg/diagnostics b/bpkg/diagnostics
index 565a9e5..68aac63 100644
--- a/bpkg/diagnostics
+++ b/bpkg/diagnostics
@@ -66,7 +66,7 @@ namespace bpkg
//
// While uint8 is more than enough, use uint16 for the ease of printing.
//
- extern std::uint16_t verb;
+ extern uint16_t verb;
template <typename F> inline void level1 (const F& f) {if (verb >= 1) f ();}
template <typename F> inline void level2 (const F& f) {if (verb >= 2) f ();}