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>2016-04-17 01:51:29 +0300
committerBrecht Van Lommel <brechtvanlommel@gmail.com>2016-04-17 02:05:50 +0300
commit1dfbcd88d5f64094062b0856539d894da0768478 (patch)
tree3dc3d84b8f2af887409740fb451a2f96ee37b61b /intern/moto
parent667a5ef48e5a0f9f20aecce06131516bb92d0f9b (diff)
Fix a few compiler warnings with OS X / clang.
Diffstat (limited to 'intern/moto')
-rw-r--r--intern/moto/include/MT_Vector3.h1
-rw-r--r--intern/moto/include/MT_Vector4.h1
2 files changed, 0 insertions, 2 deletions
diff --git a/intern/moto/include/MT_Vector3.h b/intern/moto/include/MT_Vector3.h
index b06f345bdaf..545ca1fad0b 100644
--- a/intern/moto/include/MT_Vector3.h
+++ b/intern/moto/include/MT_Vector3.h
@@ -52,7 +52,6 @@
class MT_Vector3 : public MT_Tuple3 {
public:
- virtual ~MT_Vector3() {}
MT_Vector3() {}
MT_Vector3(const float *v) : MT_Tuple3(v) {}
MT_Vector3(const double *v) : MT_Tuple3(v) {}
diff --git a/intern/moto/include/MT_Vector4.h b/intern/moto/include/MT_Vector4.h
index d157cefa946..440bf9b84f1 100644
--- a/intern/moto/include/MT_Vector4.h
+++ b/intern/moto/include/MT_Vector4.h
@@ -53,7 +53,6 @@
class MT_Vector4 : public MT_Tuple4 {
public:
- virtual ~MT_Vector4() {}
MT_Vector4() {}
MT_Vector4(const float *v) : MT_Tuple4(v) {}
MT_Vector4(const double *v) : MT_Tuple4(v) {}