aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorShauren <shauren.trinity@gmail.com>2021-04-12 12:24:28 +0200
committerShauren <shauren.trinity@gmail.com>2021-04-12 12:24:28 +0200
commite858dd16ef132ab9af8f15e1300b7b95466ed977 (patch)
tree1e1f00e0122cb685cc355a895f2f28eda780a8c6 /src
parent8b93fc57211eaf47a12772d2b620453dfd21070a (diff)
Core: Fix linking with gcc 8.3
Diffstat (limited to 'src')
-rw-r--r--src/server/scripts/Spells/spell_shaman.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/server/scripts/Spells/spell_shaman.cpp b/src/server/scripts/Spells/spell_shaman.cpp
index adef5e55ed6..09b3e0b40ad 100644
--- a/src/server/scripts/Spells/spell_shaman.cpp
+++ b/src/server/scripts/Spells/spell_shaman.cpp
@@ -490,7 +490,7 @@ class spell_sha_flametongue_weapon_aura : public AuraScript
class spell_sha_healing_rain_aura : public AuraScript
{
public:
- static constexpr const char ScriptName[] = "spell_sha_healing_rain";
+ static constexpr char const ScriptName[] = "spell_sha_healing_rain";
void SetVisualDummy(TempSummon* summon)
{
@@ -521,6 +521,7 @@ private:
ObjectGuid _visualDummy;
float _x = 0.0f, _y = 0.0f, _z = 0.0f;
};
+constexpr char const spell_sha_healing_rain_aura::ScriptName[];
// 73920 - Healing Rain
class spell_sha_healing_rain : public SpellScript