fix clang 3.8 compilation

This commit is contained in:
2019-05-07 04:17:33 +07:00
parent 073789c767
commit ecb354bfce
2 changed files with 2 additions and 2 deletions

View File

@@ -87,7 +87,7 @@ namespace flat_hpp
std::is_same<typename container_type::allocator_type, allocator_type>::value, std::is_same<typename container_type::allocator_type, allocator_type>::value,
"Container::allocator_type must be same type as allocator_type"); "Container::allocator_type must be same type as allocator_type");
public: public:
flat_map() = default; flat_map() {}
explicit flat_map( explicit flat_map(
const Allocator& a) const Allocator& a)

View File

@@ -56,7 +56,7 @@ namespace flat_hpp
std::is_same<typename container_type::allocator_type, allocator_type>::value, std::is_same<typename container_type::allocator_type, allocator_type>::value,
"Container::allocator_type must be same type as allocator_type"); "Container::allocator_type must be same type as allocator_type");
public: public:
flat_set() = default; flat_set() {}
explicit flat_set( explicit flat_set(
const Allocator& a) const Allocator& a)