diff options
author | Aokromes <Aokromes@users.noreply.github.com> | 2019-07-08 12:51:42 +0200 |
---|---|---|
committer | Giacomo Pozzoni <giacomopoz@gmail.com> | 2019-07-08 12:51:42 +0200 |
commit | 574a7c8d3d5f5a5660295deb70e905cf4dd756c4 (patch) | |
tree | e82828fb825b4f04cb841dc6cb53945d46fc15cc /src/server/game/Pools/PoolMgr.h | |
parent | 84b7b2e08ea55575cbe62d795383d4a5341ffd4d (diff) |
Core/Misc: More coding standards (#23519)
* Core/Misc: More coding standards
* revert part
* "void " or more to "void "
* fix? reject
* remove more double whitespaces
* remove more double whitespaces
* more standards
* more coding standards
* More standards
* more coding
* more coding standards
* more coding standards
* And more standards
Diffstat (limited to 'src/server/game/Pools/PoolMgr.h')
-rw-r--r-- | src/server/game/Pools/PoolMgr.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/server/game/Pools/PoolMgr.h b/src/server/game/Pools/PoolMgr.h index b599e8183fd..6afe78206e0 100644 --- a/src/server/game/Pools/PoolMgr.h +++ b/src/server/game/Pools/PoolMgr.h @@ -27,13 +27,13 @@ struct PoolTemplateData { - uint32 MaxLimit; + uint32 MaxLimit; }; struct PoolObject { - ObjectGuid::LowType guid; - float chance; + ObjectGuid::LowType guid; + float chance; PoolObject(ObjectGuid::LowType _guid, float _chance) : guid(_guid), chance(std::fabs(_chance)) { } }; |