Remove unnecessary semicolons.

This commit is contained in:
Herman Zvonimir Došilović 2020-03-28 23:47:49 +01:00
parent 22dfd36e7d
commit 1347bef72d

View File

@ -78,7 +78,7 @@ public:
template<typename U>
PoolSharedObjectAllocator(const PoolSharedObjectAllocator<U>& other)
: m_poolInfo(other.m_poolInfo)
{};
{}
T* allocate(std::size_t n) {
(void)n;
@ -130,7 +130,7 @@ public:
template<typename U>
ThreadLocalPoolSharedObjectAllocator(const ThreadLocalPoolSharedObjectAllocator<U>& other)
: m_poolInfo(other.m_poolInfo)
{};
{}
T* allocate(std::size_t n) {
(void)n;
@ -188,7 +188,7 @@ public:
template<typename U>
SharedObjectAllocator(const SharedObjectAllocator<U>& other)
: m_info(other.m_info)
{};
{}
T* allocate(std::size_t n) {
(void)n;
@ -228,7 +228,7 @@ public:
CustomPoolSharedObjectAllocator(const CustomPoolSharedObjectAllocator<U, P>& other)
: m_info(other.m_info)
, m_pool(other.m_pool)
{};
{}
T* allocate(std::size_t n) {
(void)n;