[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [12006] trunk/blender/intern/moto/include: This does nothing to fix the irix stuff but gets rid of a couple of simple

Kent Mein mein at cs.umn.edu
Tue Sep 11 06:05:44 CEST 2007


Revision: 12006
          http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=12006
Author:   sirdude
Date:     2007-09-11 06:05:44 +0200 (Tue, 11 Sep 2007)

Log Message:
-----------
This does nothing to fix the irix stuff but gets rid of a couple of simple
warnings that showup on irix.

Kent

Modified Paths:
--------------
    trunk/blender/intern/moto/include/MT_Vector3.h
    trunk/blender/intern/moto/include/MT_Vector4.h

Modified: trunk/blender/intern/moto/include/MT_Vector3.h
===================================================================
--- trunk/blender/intern/moto/include/MT_Vector3.h	2007-09-11 00:26:15 UTC (rev 12005)
+++ trunk/blender/intern/moto/include/MT_Vector3.h	2007-09-11 04:05:44 UTC (rev 12006)
@@ -51,6 +51,7 @@
 
 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) {}

Modified: trunk/blender/intern/moto/include/MT_Vector4.h
===================================================================
--- trunk/blender/intern/moto/include/MT_Vector4.h	2007-09-11 00:26:15 UTC (rev 12005)
+++ trunk/blender/intern/moto/include/MT_Vector4.h	2007-09-11 04:05:44 UTC (rev 12006)
@@ -52,6 +52,7 @@
 
 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) {}





More information about the Bf-blender-cvs mailing list