summaryrefslogtreecommitdiffstats
path: root/src/3rdparty/assimp/include/assimp/types.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/3rdparty/assimp/include/assimp/types.h')
-rw-r--r--src/3rdparty/assimp/include/assimp/types.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/3rdparty/assimp/include/assimp/types.h b/src/3rdparty/assimp/include/assimp/types.h
index 8b35bd386..a8200a765 100644
--- a/src/3rdparty/assimp/include/assimp/types.h
+++ b/src/3rdparty/assimp/include/assimp/types.h
@@ -217,7 +217,7 @@ struct aiColor3D
/** Check whether a color is black */
bool IsBlack() const {
static const float epsilon = 10e-3f;
- return fabs( r ) < epsilon && fabs( g ) < epsilon && fabs( b ) < epsilon;
+ return std::fabs( r ) < epsilon && std::fabs( g ) < epsilon && std::fabs( b ) < epsilon;
}
#endif // !__cplusplus