mirror of
https://github.com/oatpp/oatpp.git
synced 2025-01-18 16:43:57 +08:00
Remove unnecessary semicolons.
This commit is contained in:
parent
22dfd36e7d
commit
1347bef72d
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user