Fix -Wextra-semi clang warnings

Remove superfluous semicola.
This commit is contained in:
Marcel Raad
2019-02-25 10:19:45 +01:00
parent 313bc2a36b
commit 1e5a4ad35e

View File

@@ -44,7 +44,7 @@ public:
typedef Type value_type; typedef Type value_type;
partial_std_allocator_wrapper(){}; partial_std_allocator_wrapper(){}
template<typename Other> template<typename Other>
partial_std_allocator_wrapper(const partial_std_allocator_wrapper<Other>&){} partial_std_allocator_wrapper(const partial_std_allocator_wrapper<Other>&){}
@@ -52,7 +52,7 @@ public:
partial_std_allocator_wrapper(const std::allocator<Type>& x): partial_std_allocator_wrapper(const std::allocator<Type>& x):
std::allocator<Type>(x) std::allocator<Type>(x)
{ {
}; }
#if defined(BOOST_DINKUMWARE_STDLIB) #if defined(BOOST_DINKUMWARE_STDLIB)
/* Dinkumware guys didn't provide a means to call allocate() without /* Dinkumware guys didn't provide a means to call allocate() without