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:
authorBrecht Van Lommel <brechtvanlommel@gmail.com>2014-02-28 21:15:24 +0400
committerBrecht Van Lommel <brechtvanlommel@gmail.com>2014-02-28 21:15:24 +0400
commitda5e6b98c9991c7f113e97bbf856e7bc0161bcc0 (patch)
treeca9ad2041eac5bb920123358ae3d7e6f2cdd0cff
parent7f24b34dcc78376fff7d81119e23f16f3429c58f (diff)
Fix T38887: error in (still unused) freestyle math function implementation.
-rw-r--r--source/blender/freestyle/intern/geometry/VecMat.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/blender/freestyle/intern/geometry/VecMat.h b/source/blender/freestyle/intern/geometry/VecMat.h
index c3aae0601fe..3c3d40875d0 100644
--- a/source/blender/freestyle/intern/geometry/VecMat.h
+++ b/source/blender/freestyle/intern/geometry/VecMat.h
@@ -704,7 +704,8 @@ public:
for (unsigned int j = 0; j < N; j++)
res(j, i) = this->_coord[i * N + j];
}
- return res;
+ *this = res;
+ return *this;
}
template <class U>