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:
Diffstat (limited to 'intern/moto/include/MT_Vector2.h')
-rw-r--r--intern/moto/include/MT_Vector2.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/intern/moto/include/MT_Vector2.h b/intern/moto/include/MT_Vector2.h
index 35748ce2b0d..629d962a781 100644
--- a/intern/moto/include/MT_Vector2.h
+++ b/intern/moto/include/MT_Vector2.h
@@ -52,8 +52,8 @@
class MT_Vector2 : public MT_Tuple2 {
public:
MT_Vector2() {}
- MT_Vector2(const float *v) : MT_Tuple2(v) {}
- MT_Vector2(const double *v) : MT_Tuple2(v) {}
+ MT_Vector2(const float *v2) : MT_Tuple2(v2) {}
+ MT_Vector2(const double *v2) : MT_Tuple2(v2) {}
MT_Vector2(MT_Scalar xx, MT_Scalar yy) : MT_Tuple2(xx, yy) {}
MT_Vector2& operator+=(const MT_Vector2& v);