]> git.localhorst.tv Git - l2e.git/commitdiff
removed unneccessary destructor in HeroTag
authorDaniel Karbach <daniel.karbach@localhorst.tv>
Sat, 11 Aug 2012 15:53:44 +0000 (17:53 +0200)
committerDaniel Karbach <daniel.karbach@localhorst.tv>
Sat, 11 Aug 2012 15:53:44 +0000 (17:53 +0200)
src/battle/HeroTag.h

index c21f8570b63c5de5b2668502f3e876f9c806fd80..f1408fd1882b6c5b0dfb413ba37a24702e617f7f 100644 (file)
@@ -28,10 +28,9 @@ class BattleState;
 class HeroTag {
 
 public:
-       HeroTag() : battle(0), index(0) { };
+       HeroTag() : battle(0), index(0) { }
        HeroTag(const BattleState *battle, int heroIndex)
        : battle(battle), index(heroIndex) { }
-       ~HeroTag() { }
 
 public:
        const graphics::Sprite *HeroSprite() const;