summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/CheckBasicStyle.lua3
-rw-r--r--src/main.cpp4
2 files changed, 4 insertions, 3 deletions
diff --git a/src/CheckBasicStyle.lua b/src/CheckBasicStyle.lua
index ddc552fa4..fba30ea98 100644
--- a/src/CheckBasicStyle.lua
+++ b/src/CheckBasicStyle.lua
@@ -131,12 +131,13 @@ local g_ViolationPatterns =
{"for%(", "Needs a space after \"for\""},
{"while%(", "Needs a space after \"while\""},
{"switch%(", "Needs a space after \"switch\""},
+ {"catch%(", "Needs a space after \"catch\""},
-- No space after keyword's parenthesis:
{"[^%a#]if %( ", "Remove the space after \"(\""},
{"for %( ", "Remove the space after \"(\""},
{"while %( ", "Remove the space after \"(\""},
- {"switch %( ", "Remove the space after \"(\""},
+ {"catch %( ", "Remove the space after \"(\""},
-- No space before a closing parenthesis:
{" %)", "Remove the space before \")\""},
diff --git a/src/main.cpp b/src/main.cpp
index 93fa6af91..106233342 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -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!");
}