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
diff options
context:
space:
mode:
authorKester Maddock <Christopher.Maddock.1@uni.massey.ac.nz>2004-06-04 07:04:56 +0400
committerKester Maddock <Christopher.Maddock.1@uni.massey.ac.nz>2004-06-04 07:04:56 +0400
commit72493e41bd24b0c6a30c486e32421acb6bf2ce07 (patch)
tree51d6f39bdf3707a5239b2d45a19dee26e2634af6 /extern/solid/src
parent44f45894c2fca8f7e0b7bbfff0e50f24e6c993a5 (diff)
Compile fixes for gcc 3.4
Diffstat (limited to 'extern/solid/src')
-rwxr-xr-xextern/solid/src/complex/DT_BBoxTree.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/extern/solid/src/complex/DT_BBoxTree.h b/extern/solid/src/complex/DT_BBoxTree.h
index 995da05573a..3d9da6e34ba 100755
--- a/extern/solid/src/complex/DT_BBoxTree.h
+++ b/extern/solid/src/complex/DT_BBoxTree.h
@@ -136,7 +136,7 @@ public:
: DT_Pack<Shape1, Shape2>(a, b),
m_margin(margin)
{
- m_b_cbox += computeCBox(margin, m_a.m_inv_xform);
+ this->m_b_cbox += computeCBox(margin, this->m_a.m_inv_xform);
}
MT_Scalar m_margin;
@@ -185,7 +185,7 @@ bool ray_cast(const DT_BBoxTree& a, const DT_RootData<Shape>& rd,
if (a.m_type == DT_BBoxTree::LEAF)
{
- return ::ray_cast(rd, a.m_index, source, target, lambda, normal);
+ return ray_cast(rd, a.m_index, source, target, lambda, normal);
}
else
{