1
0
Fork 0

Final template keyword style fix.

This commit is contained in:
Mattes D 2014-08-28 17:01:59 +03:00
parent 271c8c0d32
commit d74e49ddc0
1 changed files with 2 additions and 2 deletions

View File

@ -3,7 +3,7 @@
#include <memory>
template<class T>
template <class T>
class cAllocationPool
{
public:
@ -34,7 +34,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.**/
template<class T, size_t NumElementsInReserve>
template <class T, size_t NumElementsInReserve>
class cListAllocationPool : public cAllocationPool<T>
{
public: