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:
@@ -122,11 +122,7 @@ class SG_EXPORT Geometry : public Drawable
|
||||
Geometry& operator = (const Geometry&) { return *this;}
|
||||
|
||||
virtual ~Geometry();
|
||||
|
||||
//virtual const bool computeBound() const;
|
||||
|
||||
|
||||
|
||||
|
||||
PrimitiveList _primitives;
|
||||
|
||||
ref_ptr<Vec3Array> _vertexArray;
|
||||
|
||||
Reference in New Issue
Block a user