Remove redundant parameters list

This commit is contained in:
Dmitry-Me 2015-01-14 08:27:32 +03:00
parent 38b49ae042
commit 9a5a48dbd2
1 changed files with 1 additions and 1 deletions

View File

@ -215,7 +215,7 @@ template <class T, int INIT>
class DynArray
{
public:
DynArray< T, INIT >() {
DynArray() {
_mem = _pool;
_allocated = INIT;
_size = 0;