From ecb354bfcecada41fc1e39cdf4ce2d0346ea9208 Mon Sep 17 00:00:00 2001 From: BlackMATov Date: Tue, 7 May 2019 04:17:33 +0700 Subject: [PATCH] fix clang 3.8 compilation --- headers/flat_hpp/flat_map.hpp | 2 +- headers/flat_hpp/flat_set.hpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/headers/flat_hpp/flat_map.hpp b/headers/flat_hpp/flat_map.hpp index 90306f9..f914b62 100644 --- a/headers/flat_hpp/flat_map.hpp +++ b/headers/flat_hpp/flat_map.hpp @@ -87,7 +87,7 @@ namespace flat_hpp std::is_same::value, "Container::allocator_type must be same type as allocator_type"); public: - flat_map() = default; + flat_map() {} explicit flat_map( const Allocator& a) diff --git a/headers/flat_hpp/flat_set.hpp b/headers/flat_hpp/flat_set.hpp index 7b0dd73..95ab531 100644 --- a/headers/flat_hpp/flat_set.hpp +++ b/headers/flat_hpp/flat_set.hpp @@ -56,7 +56,7 @@ namespace flat_hpp std::is_same::value, "Container::allocator_type must be same type as allocator_type"); public: - flat_set() = default; + flat_set() {} explicit flat_set( const Allocator& a)