From b42d9a345e2b02a1b17fa61b22117fbf7b187a31 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Fri, 11 May 2012 11:19:04 +0200 Subject: Add support for -I option Now quote-included ("") option files are searched for relative to the including file while bracket-included (<>) ones are search in the directories specified with -I. --- tests/parser/driver.cxx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'tests') 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) -- cgit v1.1