aboutsummaryrefslogtreecommitdiff
path: root/build/options.ixx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2015-09-08 10:56:32 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2015-09-08 10:56:32 +0200
commiteb264e1892c2a1379fa3bcab9aefea219e8e7138 (patch)
tree1031f859076b2d8f117a2948ec1184a5536f9cbc /build/options.ixx
parent55471ef43695408bae2237374be4637c302d1c87 (diff)
Rework diagnostics verbosity, add quiet mode/option
Diffstat (limited to 'build/options.ixx')
-rw-r--r--build/options.ixx12
1 files changed, 12 insertions, 0 deletions
diff --git a/build/options.ixx b/build/options.ixx
index 671f9ec..c44d7e5 100644
--- a/build/options.ixx
+++ b/build/options.ixx
@@ -133,12 +133,24 @@ v () const
return this->v_;
}
+inline const bool& options::
+q () const
+{
+ return this->q_;
+}
+
inline const std::uint16_t& options::
verbose () const
{
return this->verbose_;
}
+inline bool options::
+verbose_specified () const
+{
+ return this->verbose_specified_;
+}
+
// Begin epilogue.
//
//