summaryrefslogtreecommitdiff
path: root/src/lib/util.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2019-02-12 21:39:01 +0000
committerCarl Hetherington <cth@carlh.net>2019-02-12 21:39:01 +0000
commitcfcb0f5d66cc68d8d395480a95d4fe95c63e214e (patch)
tree9a4c394b38fc4f5934ce8a9808f7ce165422f459 /src/lib/util.cc
parent5dfecc0dd8a3dae75a9bfff95d3448ba4c3f4998 (diff)
parent6f856af55898f94b45e3be28aa4f7c962de8a398 (diff)
Merge branch 'master' of ssh://git.carlh.net/home/carl/git/dcpomatic
Diffstat (limited to 'src/lib/util.cc')
-rw-r--r--src/lib/util.cc2
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);
}