summaryrefslogtreecommitdiff
path: root/tests/parser
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2009-08-22 17:54:26 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2009-08-22 17:54:26 +0200
commit64aa9e062d09d33de99ab4ddc0dc73828af2543e (patch)
tree4ca7cd26dec156b2d4c28f100679e3db12dace91 /tests/parser
parentdc7b8d2063dac867f2e87dbe764d2f3df2331e95 (diff)
Convert to the lower case naming convention
Diffstat (limited to 'tests/parser')
-rw-r--r--tests/parser/driver.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/parser/driver.cxx b/tests/parser/driver.cxx
index c783503..27490b1 100644
--- a/tests/parser/driver.cxx
+++ b/tests/parser/driver.cxx
@@ -24,10 +24,10 @@ int main (int argc, char* argv[])
ifs.exceptions (ifstream::failbit | ifstream::badbit);
ifs.open (argv[1]);
- Parser parser;
- parser.parse (ifs, argv[1]);
+ parser p;
+ p.parse (ifs, argv[1]);
}
- catch (Parser::InvalidInput const&)
+ catch (parser::invalid_input const&)
{
return 1;
}