Add dummy return values to keep MSVC happy

This commit is contained in:
rdb 2015-11-25 02:53:56 +01:00
parent f6b66fc5db
commit 2abe2df1b4
2 changed files with 3 additions and 1 deletions

View File

@ -122,6 +122,7 @@ get_body() const {
//PhysxBodyDesc value;
//value._desc = *(_desc.body);
//return value;
return PhysxBodyDesc();
}
////////////////////////////////////////////////////////////////////

View File

@ -93,7 +93,7 @@ set_max_bounds(PhysxBounds3 &bounds) {
////////////////////////////////////////////////////////////////////
// Function: PhysxSceneDesc::get_max_bounds
// Access: Published
// Description:
// Description:
////////////////////////////////////////////////////////////////////
PhysxBounds3 PhysxSceneDesc::
get_max_bounds() const {
@ -102,6 +102,7 @@ get_max_bounds() const {
//PhysxBounds3 value;
//value._bounds = *(_desc.maxBounds);
//return value;
return PhysxBounds3();
}
////////////////////////////////////////////////////////////////////