mirror of
https://github.com/OPM/opm-simulators.git
synced 2025-01-02 04:26:55 -06:00
Fixes warning about catching polymorphic type by value.
Removed message in amgclbackend was: warning: catching polymorphic type ‘class boost::property_tree::json_parser::json_parser_error’ by value [-Wcatch-value=]
This commit is contained in:
parent
932ddcd32d
commit
02bbe995c3
@ -78,7 +78,7 @@ void amgclSolverBackend<block_size>::initialize(int N_, int nnz_, int dim) {
|
||||
if (file.is_open()) { // if file exists, read parameters from file
|
||||
try {
|
||||
boost::property_tree::read_json(file, prm);
|
||||
} catch (boost::property_tree::json_parser::json_parser_error e) {
|
||||
} catch (boost::property_tree::json_parser::json_parser_error& e) {
|
||||
OPM_THROW(std::logic_error, "Error cannot parse json file '" + filename + "'");
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user