mirror of
https://github.com/BlackMATov/flat.hpp.git
synced 2025-12-16 22:16:58 +07:00
remove dummy allocator from tests
This commit is contained in:
@@ -99,8 +99,8 @@ namespace flat_hpp
|
||||
};
|
||||
public:
|
||||
flat_map()
|
||||
noexcept(std::is_nothrow_default_constructible<base_type>::value
|
||||
&& std::is_nothrow_default_constructible<container_type>::value) {}
|
||||
noexcept(std::is_nothrow_default_constructible_v<base_type>
|
||||
&& std::is_nothrow_default_constructible_v<container_type>) {}
|
||||
|
||||
explicit flat_map(const Compare& c)
|
||||
: base_type(c) {}
|
||||
|
||||
Reference in New Issue
Block a user