aboutsummaryrefslogtreecommitdiff
path: root/build2/test/script/parser
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2016-11-02 17:28:47 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2016-11-04 09:26:37 +0200
commit860750cc3128693ebc5c610855ae7b1ab60cdfc5 (patch)
tree0f3a1aee25844393d902d5a352fded2ca13ca361 /build2/test/script/parser
parentda6280024e196efb9e55b753751a772e3a844a82 (diff)
Rely on path from replay data in testscript re-parse phase
Diffstat (limited to 'build2/test/script/parser')
-rw-r--r--build2/test/script/parser4
1 files changed, 2 insertions, 2 deletions
diff --git a/build2/test/script/parser b/build2/test/script/parser
index cff1b39..6e29c9a 100644
--- a/build2/test/script/parser
+++ b/build2/test/script/parser
@@ -37,7 +37,7 @@ namespace build2
void
parse (script& s, runner& r)
{
- parse (s, s.script_target.path (), s, r);
+ parse (s, s, r);
}
// Recursive descent parser.
@@ -49,7 +49,7 @@ namespace build2
//
protected:
void
- parse (scope&, const path& name, script&, runner&);
+ parse (scope&, script&, runner&);
token
pre_parse_scope_body ();