diff options
author | kaelima <jeppo_meyer@msn.com> | 2011-06-12 02:30:32 +0200 |
---|---|---|
committer | kaelima <jeppo_meyer@msn.com> | 2011-06-12 02:30:32 +0200 |
commit | b9e8694540f019792f15dfbee8041cec61e8b2bf (patch) | |
tree | 9e4207d391764e3d7ac3f71185aa9ccef46fb8e0 /src/server/game/Grids/Grid.h | |
parent | da03bbbdab7515434191ab1f48e686fcac11cca2 (diff) |
Core: Continued cleanup
If and for whitespaces.
Diffstat (limited to 'src/server/game/Grids/Grid.h')
-rwxr-xr-x | src/server/game/Grids/Grid.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/server/game/Grids/Grid.h b/src/server/game/Grids/Grid.h index a940d4daf64..a6e1316718e 100755 --- a/src/server/game/Grids/Grid.h +++ b/src/server/game/Grids/Grid.h @@ -58,7 +58,7 @@ class Grid */ template<class SPECIFIC_OBJECT> void AddWorldObject(SPECIFIC_OBJECT *obj) { - if(!i_objects.template insert<SPECIFIC_OBJECT>(obj)) + if (!i_objects.template insert<SPECIFIC_OBJECT>(obj)) ASSERT(false); } @@ -66,7 +66,7 @@ class Grid */ template<class SPECIFIC_OBJECT> void RemoveWorldObject(SPECIFIC_OBJECT *obj) { - if(!i_objects.template remove<SPECIFIC_OBJECT>(obj)) + if (!i_objects.template remove<SPECIFIC_OBJECT>(obj)) ASSERT(false); } @@ -104,7 +104,7 @@ class Grid */ template<class SPECIFIC_OBJECT> void AddGridObject(SPECIFIC_OBJECT *obj) { - if(!i_container.template insert<SPECIFIC_OBJECT>(obj)) + if (!i_container.template insert<SPECIFIC_OBJECT>(obj)) ASSERT(false); } @@ -112,7 +112,7 @@ class Grid */ template<class SPECIFIC_OBJECT> void RemoveGridObject(SPECIFIC_OBJECT *obj) { - if(!i_container.template remove<SPECIFIC_OBJECT>(obj)) + if (!i_container.template remove<SPECIFIC_OBJECT>(obj)) ASSERT(false); } |