diff options
author | Vincent-Michael <vincent_michael@gmx.de> | 2015-11-07 20:01:35 +0100 |
---|---|---|
committer | Vincent-Michael <vincent_michael@gmx.de> | 2015-11-07 20:01:53 +0100 |
commit | 7d5e7102cdd407846fa340892df39ea49938ee69 (patch) | |
tree | d99383a87495bc0a1efb1ee357f00de96b096410 /src/server/shared/Dynamic | |
parent | ff9001ce1da5160ef5dc245a822693f12dc9ddff (diff) |
Core: Whitespace cleanup
Diffstat (limited to 'src/server/shared/Dynamic')
-rw-r--r-- | src/server/shared/Dynamic/TypeContainer.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/server/shared/Dynamic/TypeContainer.h b/src/server/shared/Dynamic/TypeContainer.h index b68dec00da7..7addf8028bf 100644 --- a/src/server/shared/Dynamic/TypeContainer.h +++ b/src/server/shared/Dynamic/TypeContainer.h @@ -47,7 +47,7 @@ template<> struct ContainerMapList<TypeNull> /* nothing is in type null */ { }; -template<class H, class T> +template<class H, class T> struct ContainerMapList<TypeList<H, T> > { ContainerMapList<H> _elements; @@ -105,7 +105,7 @@ class TypeMapContainer template<class SPECIFIC_TYPE> size_t Count() const { return Trinity::Count(i_elements, (SPECIFIC_TYPE*)NULL); } /// inserts a specific object into the container - template<class SPECIFIC_TYPE> + template<class SPECIFIC_TYPE> bool insert(SPECIFIC_TYPE *obj) { SPECIFIC_TYPE* t = Trinity::Insert(i_elements, obj); @@ -113,7 +113,7 @@ class TypeMapContainer } /// Removes the object from the container, and returns the removed object - //template<class SPECIFIC_TYPE> + //template<class SPECIFIC_TYPE> //bool remove(SPECIFIC_TYPE* obj) //{ // SPECIFIC_TYPE* t = Trinity::Remove(i_elements, obj); |