clean line trailing spaces and tabs

Signed-off-by: R4SAS <r4sas@i2pmail.org>
This commit is contained in:
R4SAS 2021-11-27 23:30:35 +03:00
parent 94661f697b
commit edc0162163
No known key found for this signature in database
GPG key ID: 66F6C87B98EBCFE2
66 changed files with 998 additions and 999 deletions

View file

@ -58,8 +58,8 @@ namespace util
{
CleanUp (m_Head);
m_Head = nullptr;
}
}
template<typename... TArgs>
T * Acquire (TArgs&&... args)
{
@ -104,8 +104,8 @@ namespace util
head = static_cast<T*>(*(void * *)head); // next
::operator delete ((void *)tmp);
}
}
}
protected:
T * m_Head;
@ -152,11 +152,11 @@ namespace util
{
std::lock_guard<std::mutex> l(m_Mutex);
head = this->m_Head;
this->m_Head = nullptr;
this->m_Head = nullptr;
}
if (head) this->CleanUp (head);
}
}
private:
std::mutex m_Mutex;