changeset 1568:2b532ff7f22e

Avoid compiler warning
author Chris Cannam
date Wed, 07 Nov 2018 15:46:10 +0000
parents 36b4872e894a
children c2c8e071e24f
files plugin/PiperVampPluginFactory.cpp
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/plugin/PiperVampPluginFactory.cpp	Wed Nov 07 11:47:24 2018 +0000
+++ b/plugin/PiperVampPluginFactory.cpp	Wed Nov 07 15:46:10 2018 +0000
@@ -136,7 +136,7 @@
     SVDEBUG << "Server " << executable << " reports version number "
             << version << endl;
 
-    float eps = 1e-6;
+    float eps = 1e-6f;
     return (version >= minimumVersion ||
             fabsf(version - minimumVersion) < eps); // arf
 }