1
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

View File

@ -3,7 +3,7 @@
#include <memory> #include <memory>
template<class T> template <class T>
class cAllocationPool class cAllocationPool
{ {
public: public:
@ -34,7 +34,7 @@ public:
/** Allocates memory storing unused elements in a linked list. Keeps at least NumElementsInReserve /** 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> template <class T, size_t NumElementsInReserve>
class cListAllocationPool : public cAllocationPool<T> class cListAllocationPool : public cAllocationPool<T>
{ {
public: public: