diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2022-10-28 08:16:50 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2022-10-28 08:16:50 +0200 |
commit | 6b06c5dc0f6a8e33ca0fbe98fd36522ca6f3432d (patch) | |
tree | 3cd8b3b24a86484a92a5be76ddfeb995725530da /libbuild2/b-options.ixx | |
parent | 6b9dbfaaf2b3dfdf3627b57c7f15c6a3cd105f35 (diff) |
Add ability to disable diagnostics buffering (--no-diag-buffer)
Diffstat (limited to 'libbuild2/b-options.ixx')
-rw-r--r-- | libbuild2/b-options.ixx | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/libbuild2/b-options.ixx b/libbuild2/b-options.ixx index f43dce2..895831f 100644 --- a/libbuild2/b-options.ixx +++ b/libbuild2/b-options.ixx @@ -153,6 +153,12 @@ namespace build2 } inline const bool& b_options:: + no_diag_buffer () const + { + return this->no_diag_buffer_; + } + + inline const bool& b_options:: match_only () const { return this->match_only_; |