Converted the instances of const built in types being returned from methods
and passed as paramters into straight forward non const built in types, i.e. const bool foogbar(const int) becomes bool foobar(int).
This commit is contained in:
@@ -29,7 +29,7 @@ void Transform::setReferenceFrame(ReferenceFrame rf)
|
||||
else setCullingActive(true);
|
||||
}
|
||||
|
||||
const bool Transform::computeBound() const
|
||||
bool Transform::computeBound() const
|
||||
{
|
||||
if (!Group::computeBound()) return false;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user