This commit is contained in:
BenDr0id 2018-07-27 17:18:57 +02:00
parent 527b557f9e
commit ed80e8a436
12 changed files with 117 additions and 50 deletions

View file

@ -22,8 +22,8 @@
RemoteLog* RemoteLog::m_self = nullptr;
RemoteLog::RemoteLog()
: m_maxRows(100)
RemoteLog::RemoteLog(size_t maxRows)
: m_maxRows(maxRows)
{
uv_mutex_init(&m_mutex);