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
path: root/intern
diff options
context:
space:
mode:
authorJoerg Mueller <nexyon@gmail.com>2010-08-16 18:31:39 +0400
committerJoerg Mueller <nexyon@gmail.com>2010-08-16 18:31:39 +0400
commit75bb393ecc6799bb6d379c05fb33bf40ac2d6fad (patch)
tree728d7d3954aacadb89a302c325d4c6dc731fd2a8 /intern
parentb2cb83598c717fb0a23a20b72c989e88aa5e8dfa (diff)
Fix from patch tracker by saphires: [#23339] Remove const members in AUD_3Dmath.h
Diffstat (limited to 'intern')
-rw-r--r--intern/audaspace/intern/AUD_3DMath.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/intern/audaspace/intern/AUD_3DMath.h b/intern/audaspace/intern/AUD_3DMath.h
index a3405bf4d31..390bb1b8467 100644
--- 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;
};
};