mirror of
https://github.com/OPM/opm-simulators.git
synced 2024-12-01 05:19:09 -06:00
Merge pull request #3663 from blattms/remove-warn-opencl
Fixes warning about catching polymorphic type by value.
This commit is contained in:
commit
869de90b56
@ -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