aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2013-05-30 19:55:18 -0400
committerBoris Kolpackov <boris@codesynthesis.com>2013-05-30 19:55:18 -0400
commit93dfe8d00dc4ea19b31ebcf4dab35a32cd1d6791 (patch)
treedb4d7ccab16a4ba7c84c5cd0673e9b638b354017 /tests
parent3c55d0d6934cb037a5fb2b5729b6603d8b7ca7e5 (diff)
Get rid of dependency on Boost filesystem
Diffstat (limited to 'tests')
-rw-r--r--tests/dump/driver.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/dump/driver.cxx b/tests/dump/driver.cxx
index f17579f..766aaa4 100644
--- a/tests/dump/driver.cxx
+++ b/tests/dump/driver.cxx
@@ -578,7 +578,7 @@ main (int argc, char* argv[])
// Parse schema.
//
- SemanticGraph::Path path (argv[i], boost::filesystem::native);
+ SemanticGraph::Path path (argv[i]);
Parser parser (true, false, true);
auto_ptr<SemanticGraph::Schema> tu (parser.parse (path));