1
0

Normalized spaces after "catch".

This commit is contained in:
madmaxoft
2014-07-21 15:21:54 +02:00
parent fe6a3b5d72
commit 9e7b9a4ebe
2 changed files with 4 additions and 3 deletions

View File

@@ -281,11 +281,11 @@ int main( int argc, char **argv)
Root.Start();
}
#if !defined(ANDROID_NDK)
catch( std::exception& e)
catch (std::exception & e)
{
LOGERROR("Standard exception: %s", e.what());
}
catch( ...)
catch (...)
{
LOGERROR("Unknown exception!");
}