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:
@@ -12,7 +12,7 @@ OccluderNode::OccluderNode(const OccluderNode& node,const CopyOp& copyop):
|
||||
{
|
||||
}
|
||||
|
||||
const bool OccluderNode::computeBound() const
|
||||
bool OccluderNode::computeBound() const
|
||||
{
|
||||
bool result = Group::computeBound();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user