Skip to content

Commit

Permalink
Main: remove some deprecation warnings
Browse files Browse the repository at this point in the history
that are particularly noisy on recent GCC (not an issue on clang)
  • Loading branch information
paroj committed Oct 12, 2023
1 parent c8ae653 commit 7f3ec9c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion OgreMain/include/OgreAnimationState.h
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ namespace Ogre {
/** Get an iterator over all the animation states in this set.
@deprecated use getAnimationStates()
*/
OGRE_DEPRECATED AnimationStateIterator getAnimationStateIterator(void);
AnimationStateIterator getAnimationStateIterator(void);
/** Get an iterator over all the animation states in this set.
@deprecated use getAnimationStates()
*/
Expand Down
2 changes: 1 addition & 1 deletion OgreMain/include/OgreParticleAffectorFactory.h
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ namespace Ogre {
class _OgreExport ParticleAffectorFactory : public FXAlloc
{
protected:
OGRE_DEPRECATED std::vector<ParticleAffector*> mAffectors;
std::vector<ParticleAffector*> mAffectors; //!< @deprecated do not use
public:
ParticleAffectorFactory() {}
virtual ~ParticleAffectorFactory();
Expand Down
2 changes: 1 addition & 1 deletion OgreMain/include/OgreParticleEmitterFactory.h
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ namespace Ogre {
class _OgreExport ParticleEmitterFactory : public FXAlloc
{
protected:
OGRE_DEPRECATED std::vector<ParticleEmitter*> mEmitters;
std::vector<ParticleEmitter*> mEmitters; //!< @deprecated do not use
public:
ParticleEmitterFactory() {}
virtual ~ParticleEmitterFactory();
Expand Down

0 comments on commit 7f3ec9c

Please sign in to comment.