removed some warnings, as reported here:

http://code.google.com/p/bullet/issues/detail?id=123
Thanks sparkprime
This commit is contained in:
erwin.coumans
2008-10-27 20:20:28 +00:00
parent 6ed11057e0
commit 003b6fa669
14 changed files with 17 additions and 16 deletions

View File

@@ -1172,14 +1172,14 @@ inline Vector3d operator * (float s, const Vector3d &v )
{
Vector3d Scaled(v.x*s, v.y*s, v.z*s);
return(Scaled);
};
}
inline Vector2d operator * (float s, const Vector2d &v )
{
Vector2d Scaled(v.x*s, v.y*s);
return(Scaled);
};
}
};
}
#endif