From 1dfbcd88d5f64094062b0856539d894da0768478 Mon Sep 17 00:00:00 2001 From: Brecht Van Lommel Date: Sun, 17 Apr 2016 00:51:29 +0200 Subject: Fix a few compiler warnings with OS X / clang. --- intern/moto/include/MT_Vector3.h | 1 - intern/moto/include/MT_Vector4.h | 1 - 2 files changed, 2 deletions(-) (limited to 'intern/moto') 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) {} -- cgit v1.2.3