From 64aa9e062d09d33de99ab4ddc0dc73828af2543e Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Sat, 22 Aug 2009 17:54:26 +0200 Subject: Convert to the lower case naming convention --- tests/parser/driver.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'tests/parser/driver.cxx') 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; } -- cgit v1.1