summaryrefslogtreecommitdiff
path: root/cli/cli.cxx
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 /cli/cli.cxx
parentdc7b8d2063dac867f2e87dbe764d2f3df2331e95 (diff)
Convert to the lower case naming convention
Diffstat (limited to 'cli/cli.cxx')
-rw-r--r--cli/cli.cxx6
1 files changed, 3 insertions, 3 deletions
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.
//