diff options
| author | Naios <naios-dev@live.de> | 2015-03-28 17:29:43 +0100 |
|---|---|---|
| committer | Naios <naios-dev@live.de> | 2015-03-28 17:29:43 +0100 |
| commit | 71c0d4f7926e83a9eacc580e727169ce04e74eb5 (patch) | |
| tree | 3cec51e60b6b8f7a65b6ec65d91785e55f4a7515 /src/server/game/Reputation/ReputationMgr.h | |
| parent | 11e1f4af6046cf3c8729cf31e24c605650b71d06 (diff) | |
Core/Log: Fix linker errors that occur on msvc 12 lower then update 4
* http://stackoverflow.com/questions/4891067/weird-undefined-symbols-of-static-constants-inside-a-struct-class
* http://www-01.ibm.com/support/knowledgecenter/SSGH3R_8.0.0/com.ibm.xlcpp8a.doc/language/ref/cplr038.htm%23cplr038
* closes #14463
* ref #14317
(cherry picked from commit 9b0b1185e4f9eb48cd16237f7622204687b9c01a)
Conflicts:
src/server/game/Server/WorldSocketMgr.cpp
Diffstat (limited to 'src/server/game/Reputation/ReputationMgr.h')
| -rw-r--r-- | src/server/game/Reputation/ReputationMgr.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/server/game/Reputation/ReputationMgr.h b/src/server/game/Reputation/ReputationMgr.h index c3a8d4f477c..7d7650b858e 100644 --- a/src/server/game/Reputation/ReputationMgr.h +++ b/src/server/game/Reputation/ReputationMgr.h @@ -72,8 +72,8 @@ class ReputationMgr void LoadFromDB(PreparedQueryResult result); public: // statics static const int32 PointsInRank[MAX_REPUTATION_RANK]; - static const int32 Reputation_Cap = 42999; - static const int32 Reputation_Bottom = -42000; + static const int32 Reputation_Cap; + static const int32 Reputation_Bottom; static ReputationRank ReputationToRank(int32 standing); public: // accessors |
