From eaefd647ee060651e98f2758337500d13672d338 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Mon, 9 Jul 2018 17:38:38 +0200 Subject: Regenerate options parsing code --- build2/b-options.ixx | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) (limited to 'build2/b-options.ixx') diff --git a/build2/b-options.ixx b/build2/b-options.ixx index 0691f12..0749e4d 100644 --- a/build2/b-options.ixx +++ b/build2/b-options.ixx @@ -86,8 +86,11 @@ namespace build2 // inline invalid_value:: invalid_value (const std::string& option, - const std::string& value) - : option_ (option), value_ (value) + const std::string& value, + const std::string& message) + : option_ (option), + value_ (value), + message_ (message) { } @@ -103,6 +106,12 @@ namespace build2 return value_; } + inline const std::string& invalid_value:: + message () const + { + return message_; + } + // file_io_failure // inline file_io_failure:: -- cgit v1.1