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:
Robert Osfield
2002-09-02 12:31:35 +00:00
parent 52518673d1
commit 12226e4371
123 changed files with 850 additions and 841 deletions

View File

@@ -86,7 +86,7 @@ namespace osgParticle
virtual ~ParticleProcessor() {}
ParticleProcessor &operator=(const ParticleProcessor &) { return *this; }
inline const bool computeBound() const;
inline bool computeBound() const;
virtual void process(double dt) = 0;
@@ -140,7 +140,7 @@ namespace osgParticle
ps_ = ps;
}
inline const bool ParticleProcessor::computeBound() const
inline bool ParticleProcessor::computeBound() const
{
_bsphere.init();
_bsphere_computed = true;