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:
authorSybren A. Stüvel <sybren@blender.org>2020-12-07 14:54:46 +0300
committerSybren A. Stüvel <sybren@blender.org>2020-12-07 14:54:46 +0300
commitd329a6a937eaeb5f8a683eedf3a79384eedf0e0a (patch)
tree01f470b3415cdf7461807bb66f692c77c22cd48a
parent11c4066159e12ff630673c5fd94b37fb8c0f9102 (diff)
Fix bug in cleanup commit
Fix a copy-paste error in rB11c4066159e
-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);
}
}