From 3fa21bd39d9b9cb1b0b8d71e2cc98eebb98ad871 Mon Sep 17 00:00:00 2001 From: "Matthias P. Braendli" Date: Fri, 4 Nov 2016 14:28:19 +0100 Subject: Do not throw a copy of the exception --- src/ConfigParser.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ConfigParser.cpp b/src/ConfigParser.cpp index 7e3f855..770daa6 100644 --- a/src/ConfigParser.cpp +++ b/src/ConfigParser.cpp @@ -384,7 +384,7 @@ void parse_ptree( catch (runtime_error &e) { etiLog.log(error, "%s\n", e.what()); - throw e; + throw; } -- cgit v1.2.3