From: Timo Heister Date: Tue, 7 Feb 2017 16:24:49 +0000 (-0500) Subject: remove unused variable names X-Git-Tag: v8.5.0-rc1~143^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d39322ef297450e01168a1f8ea427fef77ddab43;p=dealii.git remove unused variable names MSVC complains about this... --- 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; }