diff options
author | Shauren <shauren.trinity@gmail.com> | 2022-02-12 21:36:46 +0100 |
---|---|---|
committer | Shauren <shauren.trinity@gmail.com> | 2022-02-12 21:36:46 +0100 |
commit | f8ad7017dd69e3853ed5912ac6151bc56b6265a0 (patch) | |
tree | 13c6568cf2e7b3a7ccb964b12f6686651f0e714d /src/server/game/Instances/InstanceScript.h | |
parent | 5b28a5ab14f3ca25f986d547e2d2005be3f047b7 (diff) |
Core/Misc: Move (or delete) constructors and destructors to .cpp files (avoids compiling them in every file that includes them)
Diffstat (limited to 'src/server/game/Instances/InstanceScript.h')
-rw-r--r-- | src/server/game/Instances/InstanceScript.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/game/Instances/InstanceScript.h b/src/server/game/Instances/InstanceScript.h index 47294cf43d0..f025a6b1b24 100644 --- a/src/server/game/Instances/InstanceScript.h +++ b/src/server/game/Instances/InstanceScript.h @@ -159,7 +159,7 @@ class TC_GAME_API InstanceScript : public ZoneScript public: explicit InstanceScript(InstanceMap* map); - virtual ~InstanceScript() { } + virtual ~InstanceScript(); InstanceMap* instance; |