diff options
| author | Carl Hetherington <cth@carlh.net> | 2019-02-12 00:17:33 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2019-02-12 00:17:33 +0000 |
| commit | 6f856af55898f94b45e3be28aa4f7c962de8a398 (patch) | |
| tree | 9bceb59ca98d592c886589c5491314530cf06b16 /src/lib/util.cc | |
| parent | 394c8347d54057c8a52dd63704ae2c9791bb30aa (diff) | |
Try to fix some warnings.
Diffstat (limited to 'src/lib/util.cc')
| -rw-r--r-- | src/lib/util.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/util.cc b/src/lib/util.cc index 544045bcb..0b6f4be72 100644 --- a/src/lib/util.cc +++ b/src/lib/util.cc @@ -726,7 +726,7 @@ relaxed_string_to_float (string s) try { boost::algorithm::replace_all (s, ",", "."); return lexical_cast<float> (s); - } catch (bad_lexical_cast) { + } catch (bad_lexical_cast &) { boost::algorithm::replace_all (s, ".", ","); return lexical_cast<float> (s); } |
