[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [31379] trunk/blender/intern/audaspace/ intern/AUD_3DMath.h: Fix from patch tracker by saphires: [#23339] Remove const members in AUD_3Dmath.h

Joerg Mueller nexyon at gmail.com
Mon Aug 16 16:31:39 CEST 2010


Revision: 31379
          http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=31379
Author:   nexyon
Date:     2010-08-16 16:31:39 +0200 (Mon, 16 Aug 2010)

Log Message:
-----------
Fix from patch tracker by saphires: [#23339] Remove const members in AUD_3Dmath.h

Modified Paths:
--------------
    trunk/blender/intern/audaspace/intern/AUD_3DMath.h

Modified: trunk/blender/intern/audaspace/intern/AUD_3DMath.h
===================================================================
--- trunk/blender/intern/audaspace/intern/AUD_3DMath.h	2010-08-16 13:47:12 UTC (rev 31378)
+++ trunk/blender/intern/audaspace/intern/AUD_3DMath.h	2010-08-16 14:31:39 UTC (rev 31379)
@@ -34,10 +34,10 @@
 		float m_v[4];
 		struct
 		{
-			const float m_w;
-			const float m_x;
-			const float m_y;
-			const float m_z;
+			float m_w;
+			float m_x;
+			float m_y;
+			float m_z;
 		};
 	};
 
@@ -120,9 +120,9 @@
 		float m_v[3];
 		struct
 		{
-			const float m_x;
-			const float m_y;
-			const float m_z;
+			float m_x;
+			float m_y;
+			float m_z;
 		};
 	};
 





More information about the Bf-blender-cvs mailing list