deleted an unneeded line

This commit is contained in:
hyung-hwan 2018-07-01 14:04:07 +00:00
parent 797518df18
commit d4444400f7
2 changed files with 1 additions and 2 deletions

View File

@ -331,7 +331,6 @@ public:
try try
{ {
// TODO: are there any ways to achieve this without memory allocation? // TODO: are there any ways to achieve this without memory allocation?
//lf = new TCallable<T> (QSE_CPP_RVREF(f));
lf = new(this->getMmgr()) TCallable<T> (QSE_CPP_RVREF(f)); lf = new(this->getMmgr()) TCallable<T> (QSE_CPP_RVREF(f));
} }
catch (...) catch (...)

View File

@ -98,7 +98,7 @@ static int test1 (void)
); );
#else #else
QSE::TcpServerF<ClientHandler> server /*(&heap_mmgr)*/; QSE::TcpServerF<ClientHandler> server (&heap_mmgr);
#endif #endif
server.setThreadStackSize (256000); server.setThreadStackSize (256000);