Removed the reducent non const get methods

This commit is contained in:
Robert Osfield
2008-07-21 22:38:11 +00:00
parent cad2f6d4fc
commit e8344a614d

View File

@@ -56,11 +56,6 @@ class OSGUTIL_EXPORT TriStripVisitor : public BaseOptimizerVisitor
_cacheSize = size;
}
inline unsigned int getCacheSize()
{
return _cacheSize;
}
inline unsigned int getCacheSize() const
{
return _cacheSize;
@@ -71,11 +66,6 @@ class OSGUTIL_EXPORT TriStripVisitor : public BaseOptimizerVisitor
_minStripSize = size;
}
inline unsigned int getMinStripSize()
{
return _minStripSize;
}
inline unsigned int getMinStripSize() const
{
return _minStripSize;