bullet: Fix misplaced INLINE getter
This commit is contained in:
parent
8c09477e37
commit
5f72e9c763
|
|
@ -30,3 +30,12 @@ empty() {
|
|||
|
||||
return BulletSoftBodyMaterial(material);
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
INLINE btSoftBody::Material &BulletSoftBodyMaterial::
|
||||
get_material() const {
|
||||
|
||||
return _material;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -23,15 +23,6 @@ BulletSoftBodyMaterial(btSoftBody::Material &material) : _material(material) {
|
|||
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
btSoftBody::Material &BulletSoftBodyMaterial::
|
||||
get_material() const {
|
||||
|
||||
return _material;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for the property m_kLST.
|
||||
*/
|
||||
|
|
|
|||
Loading…
Reference in New Issue