summaryrefslogtreecommitdiff
path: root/tests/parser/driver.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'tests/parser/driver.cxx')
-rw-r--r--tests/parser/driver.cxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/parser/driver.cxx b/tests/parser/driver.cxx
index 5f91564..bc963b5 100644
--- a/tests/parser/driver.cxx
+++ b/tests/parser/driver.cxx
@@ -29,7 +29,8 @@ main (int argc, char* argv[])
ifs.exceptions (ifstream::failbit | ifstream::badbit);
ifs.open (path.string ().c_str ());
- parser p;
+ parser::paths include_paths;
+ parser p (include_paths);
p.parse (ifs, path);
}
catch (semantics::invalid_path const& e)