Added template parameter to constructor initialiser list

This commit is contained in:
jwellbelove 2014-12-22 00:55:04 +00:00
parent 090ee05c93
commit c3007fcd8e

2
pool.h
View File

@ -58,7 +58,7 @@ namespace etl
/// Constructor
//*************************************************************************
pool()
: ipool(buffer, in_use, SIZE)
: ipool<T>(buffer, in_use, SIZE)
{
}