Code Cleanup

- Constify some catches.
This commit is contained in:
Scott Kostyshak 2012-09-02 00:39:20 -04:00 committed by Paul Beckingham
parent 589d8fab5c
commit 7a6cdde571
14 changed files with 19 additions and 19 deletions

View file

@ -126,7 +126,7 @@ int main (int argc, char** argv)
// TODO gc
}
catch (std::string& error)
catch (const std::string& error)
{
t.diag (error);
return -1;