diff options
Diffstat (limited to 'libbuild2/b-options.ixx')
-rw-r--r-- | libbuild2/b-options.ixx | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/libbuild2/b-options.ixx b/libbuild2/b-options.ixx index 0875dbd..8030ef3 100644 --- a/libbuild2/b-options.ixx +++ b/libbuild2/b-options.ixx @@ -176,12 +176,18 @@ namespace build2 return this->no_external_modules_; } - inline const bool& options:: + inline const structured_result_format& options:: structured_result () const { return this->structured_result_; } + inline bool options:: + structured_result_specified () const + { + return this->structured_result_specified_; + } + inline const bool& options:: mtime_check () const { |