projects
/
blender.git
/ commitdiff
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b2cb835
)
Fix from patch tracker by saphires: [#23339] Remove const members in AUD_3Dmath.h
author
Joerg Mueller <nexyon@gmail.com>
Mon, 16 Aug 2010 14:31:39 +0000
(14:31 +0000)
committer
Joerg Mueller <nexyon@gmail.com>
Mon, 16 Aug 2010 14:31:39 +0000
(14:31 +0000)
intern/audaspace/intern/AUD_3DMath.h
patch
|
blob
|
history
diff --git
a/intern/audaspace/intern/AUD_3DMath.h
b/intern/audaspace/intern/AUD_3DMath.h
index a3405bf4d31696dbb1f5060d83aaf681d37e05a2..390bb1b84676924b091de3961fcea2bf57bae82d 100644
(file)
--- a/
intern/audaspace/intern/AUD_3DMath.h
+++ b/
intern/audaspace/intern/AUD_3DMath.h
@@
-34,10
+34,10
@@
private:
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
@@
private:
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;
};
};