From 460a09c5a530471280045af309116adb02b28803 Mon Sep 17 00:00:00 2001 From: ejcoumans Date: Mon, 20 Nov 2006 19:21:59 +0000 Subject: [PATCH] fixed some issue, to make GCC happy --- Demos/EPAPenDepthDemo/PenetrationTestBullet.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Demos/EPAPenDepthDemo/PenetrationTestBullet.cpp b/Demos/EPAPenDepthDemo/PenetrationTestBullet.cpp index b26972708..a5b3f2773 100644 --- a/Demos/EPAPenDepthDemo/PenetrationTestBullet.cpp +++ b/Demos/EPAPenDepthDemo/PenetrationTestBullet.cpp @@ -574,7 +574,7 @@ class NxQuat z = z * sin_theta_over_two; } -void NxQuat::multiply(const NxQuat& left, const btVector3& right) + void multiply(const NxQuat& left, const btVector3& right) { float a,b,c,d; @@ -589,7 +589,7 @@ void NxQuat::multiply(const NxQuat& left, const btVector3& right) z = d; } -void NxQuat::rotate(btVector3 & v) const + void rotate(btVector3 & v) const { NxQuat myInverse; myInverse.x = -x; @@ -606,7 +606,7 @@ void NxQuat::rotate(btVector3 & v) const } float x,y,z,w; - }; +}; static void MotionCallback(int x, int y)