Final template keyword style fix.
This commit is contained in:
parent
271c8c0d32
commit
d74e49ddc0
@ -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:
|
||||||
|
Loading…
Reference in New Issue
Block a user