bullet: Fix misplaced INLINE getter

This commit is contained in:
Sam Edwards 2018-09-02 15:37:10 -06:00
parent 8c09477e37
commit 5f72e9c763
2 changed files with 9 additions and 9 deletions

View File

@ -30,3 +30,12 @@ empty() {
return BulletSoftBodyMaterial(material);
}
/**
*
*/
INLINE btSoftBody::Material &BulletSoftBodyMaterial::
get_material() const {
return _material;
}

View File

@ -23,15 +23,6 @@ BulletSoftBodyMaterial(btSoftBody::Material &material) : _material(material) {
}
/**
*
*/
btSoftBody::Material &BulletSoftBodyMaterial::
get_material() const {
return _material;
}
/**
* Getter for the property m_kLST.
*/