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 --- cli/cli.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'cli/cli.cxx') diff --git a/cli/cli.cxx b/cli/cli.cxx index b070913..39fff16 100644 --- a/cli/cli.cxx +++ b/cli/cli.cxx @@ -29,15 +29,15 @@ int main (int argc, char* argv[]) ifs.exceptions (ifstream::failbit | ifstream::badbit); - Parser parser; - parser.parse (ifs, argv[1]); + parser p; + p.parse (ifs, argv[1]); } catch (std::ios_base::failure const&) { wcerr << argv[1] << ": error: read failure" << endl; return 1; } - catch (Parser::InvalidInput const&) + catch (parser::invalid_input const&) { // Diagnostics has already been issued by the parser. // -- cgit v1.1