Selaa lähdekoodia

Removes MSVC warning with explicit cast.

Adi Shavit @ MacBookPro 9 vuotta sitten
vanhempi
commit
5fe4b975ba
1 muutettua tiedostoa jossa 1 lisäystä ja 1 poistoa
  1. 1 1
      include/assimp/types.h

+ 1 - 1
include/assimp/types.h

@@ -216,7 +216,7 @@ struct aiColor3D
 
     /** Check whether a color is black */
     bool IsBlack() const {
-        static const ai_real epsilon = 10e-3;
+        static const ai_real epsilon = ai_real(10e-3);
         return std::fabs( r ) < epsilon && std::fabs( g ) < epsilon && std::fabs( b ) < epsilon;
     }