Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--source/blender/io/collada/BCMath.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/io/collada/BCMath.cpp b/source/blender/io/collada/BCMath.cpp
index 7d8e5825ac9..0521fda5fb1 100644
--- a/source/blender/io/collada/BCMath.cpp
+++ b/source/blender/io/collada/BCMath.cpp
@@ -169,7 +169,7 @@ void BCMatrix::sanitize(Matrix &mat, int precision)
void BCMatrix::sanitize(DMatrix &mat, int precision)
{
for (auto &row : mat) {
- for (float &cell : row) {
+ for (double &cell : row) {
cell = double_round(cell, precision);
}
}