From ccc54cb0367e7ab695be74dd08f8cde2da3596b6 Mon Sep 17 00:00:00 2001 From: Martin Polanka Date: Sat, 12 Dec 2015 22:48:24 +0100 Subject: [PATCH] Updated Coding style (markdown) --- Coding-style.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Coding-style.md b/Coding-style.md index 9d4af84..d95fdab 100644 --- a/Coding-style.md +++ b/Coding-style.md @@ -52,7 +52,7 @@ if (x == 5) { ``` try { int a = 5 / 0; -} catch (exception ex) { +} catch (...) { std::cout << "Division by zero" << std::endl; } ```