Removed spaces

This commit is contained in:
Tycho 2014-06-14 20:10:49 +01:00
parent 41e5a64ff8
commit 6ddcf42409

View File

@ -33,7 +33,7 @@ public:
};
/** Allocates memory storing unused elements in a linked list. Keeps at least NumElementsInReserve
elements in the list unless malloc fails so that the program has a reserve to handle OOM.**/
elements in the list unless malloc fails so that the program has a reserve to handle OOM.**/
template<class T, size_t NumElementsInReserve>
class cListAllocationPool : public cAllocationPool<T>
{