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:
authorKent Mein <mein@cs.umn.edu>2002-12-14 18:38:45 +0300
committerKent Mein <mein@cs.umn.edu>2002-12-14 18:38:45 +0300
commit4a9377a861f659cf35a1bfa70e628a8277af3246 (patch)
tree800f0981d320ce3de97ccee8874cd8463ad88cad /intern/moto/include/MT_Vector2.h
parentcfceb16f4aa00afd9ef61baf656d62ea6b8abb00 (diff)
Gilles's patch to get rid of the the same identifier warnings
Kent -- mein@cs.umn.edu
Diffstat (limited to 'intern/moto/include/MT_Vector2.h')
-rw-r--r--intern/moto/include/MT_Vector2.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/intern/moto/include/MT_Vector2.h b/intern/moto/include/MT_Vector2.h
index a0f92f4ca80..343c7fe66c8 100644
--- a/intern/moto/include/MT_Vector2.h
+++ b/intern/moto/include/MT_Vector2.h
@@ -58,7 +58,7 @@ public:
MT_Vector2() {}
MT_Vector2(const float *v) : MT_Tuple2(v) {}
MT_Vector2(const double *v) : MT_Tuple2(v) {}
- MT_Vector2(MT_Scalar x, MT_Scalar y) : MT_Tuple2(x, y) {}
+ MT_Vector2(MT_Scalar xx, MT_Scalar yy) : MT_Tuple2(xx, yy) {}
MT_Vector2& operator+=(const MT_Vector2& v);
MT_Vector2& operator-=(const MT_Vector2& v);