aboutsummaryrefslogtreecommitdiff
path: root/libbuild2/test/script/parser.hxx
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2020-05-26 14:55:40 +0300
committerBoris Kolpackov <boris@codesynthesis.com>2020-05-27 14:38:01 +0200
commitd6581aa9be74e83cc689bfdaae9aaf2e78287975 (patch)
treee741d2c6fcdb567d8c7b897d17f3f0ca2358d307 /libbuild2/test/script/parser.hxx
parente6470e37093084251b7ee60a904a78e54d13e31b (diff)
Create build script temporary directory on demand
Diffstat (limited to 'libbuild2/test/script/parser.hxx')
-rw-r--r--libbuild2/test/script/parser.hxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/libbuild2/test/script/parser.hxx b/libbuild2/test/script/parser.hxx
index 19d4f76..aa64943 100644
--- a/libbuild2/test/script/parser.hxx
+++ b/libbuild2/test/script/parser.hxx
@@ -91,12 +91,6 @@ namespace build2
command_expr
parse_command_line (token&, token_type&);
- // Workaround for GCC 4.9 that fails to compile the base class
- // protected member function call from a lambda defined in the derived
- // class.
- //
- using build2::parser::apply_value_attributes;
-
// Execute. Issue diagnostics and throw failed in case of an error.
//
public:
@@ -110,6 +104,12 @@ namespace build2
void
exec_scope_body ();
+ // Helpers.
+ //
+ public:
+ static bool
+ special_variable (const string&) noexcept;
+
// Customization hooks.
//
protected: