diff options
| author | Giacomo Pozzoni <giacomopoz@gmail.com> | 2021-01-24 16:04:47 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-01-24 16:04:47 +0100 |
| commit | 661f554b9e08a3721227f1e4a4fe6fd74e43a1f4 (patch) | |
| tree | 16caa4dab3e052ba563212b4f8ef4bdf4af7b5fc /src/server/scripts/Northrend | |
| parent | 62320b1efab3a050cf2187490b59234a037c69c8 (diff) | |
Core/Misc: Fix static analysis issues (#25924)
* Core/Misc: Fix static analysis issues
* Fix infinite loop in ".debug send opcode"
Fix using uninitialized memory in ".debug send opcode"
Diffstat (limited to 'src/server/scripts/Northrend')
| -rw-r--r-- | src/server/scripts/Northrend/Gundrak/gundrak.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/scripts/Northrend/Gundrak/gundrak.h b/src/server/scripts/Northrend/Gundrak/gundrak.h index 18ee2088b90..4e1e51c3ccd 100644 --- a/src/server/scripts/Northrend/Gundrak/gundrak.h +++ b/src/server/scripts/Northrend/Gundrak/gundrak.h @@ -88,7 +88,7 @@ enum GDSpellIds SPELL_FIRE_BEAM_ELEMENTAL = 57072 }; -constexpr Milliseconds TIMER_STATUE_ACTIVATION = 3500ms; +inline constexpr Milliseconds TIMER_STATUE_ACTIVATION = 3500ms; template <class AI, class T> inline AI* GetGundrakAI(T* obj) |
