summaryrefslogtreecommitdiffstats
path: root/src/3rdparty/assimp/code/IFCUtil.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/3rdparty/assimp/code/IFCUtil.h')
-rw-r--r--src/3rdparty/assimp/code/IFCUtil.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/3rdparty/assimp/code/IFCUtil.h b/src/3rdparty/assimp/code/IFCUtil.h
index e78d77939..81b8f1187 100644
--- a/src/3rdparty/assimp/code/IFCUtil.h
+++ b/src/3rdparty/assimp/code/IFCUtil.h
@@ -220,7 +220,7 @@ struct FuzzyVectorCompare {
FuzzyVectorCompare(IfcFloat epsilon) : epsilon(epsilon) {}
bool operator()(const IfcVector3& a, const IfcVector3& b) {
- return fabs((a-b).SquareLength()) < epsilon;
+ return std::fabs((a-b).SquareLength()) < epsilon;
}
const IfcFloat epsilon;