From d39322ef297450e01168a1f8ea427fef77ddab43 Mon Sep 17 00:00:00 2001 From: Timo Heister Date: Tue, 7 Feb 2017 11:24:49 -0500 Subject: [PATCH] remove unused variable names MSVC complains about this... --- source/base/parameter_handler.cc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/source/base/parameter_handler.cc b/source/base/parameter_handler.cc index ccf56d3c9d..c4da6067da 100644 --- a/source/base/parameter_handler.cc +++ b/source/base/parameter_handler.cc @@ -1612,7 +1612,7 @@ bool ParameterHandler::read_input (std::istream &input, parse_input(input, filename, last_line); return true; } - catch (const ExcIO &exc) + catch (const ExcIO &) { throw; } @@ -1785,7 +1785,7 @@ ParameterHandler::read_input_from_string (const char *s, parse_input_from_string (s, last_line); return true; } - catch (const ExcIO &exc) + catch (const ExcIO &) { throw; } @@ -1902,7 +1902,7 @@ bool ParameterHandler::read_input_from_xml(std::istream &in) parse_input_from_xml (in); return true; } - catch (const ExcIO &exc) + catch (const ExcIO &) { throw; } @@ -3125,7 +3125,7 @@ MultipleParameterLoop::read_input (std::istream &input, MultipleParameterLoop::parse_input(input, filename, last_line); return true; } - catch (const ExcIO &exc) + catch (const ExcIO &) { throw; } -- 2.39.5