diff --git a/include/deque b/include/deque index 5bb8ff7a8..e552858a5 100644 --- a/include/deque +++ b/include/deque @@ -41,7 +41,7 @@ public: deque() noexcept(is_nothrow_default_constructible::value); explicit deque(const allocator_type& a); explicit deque(size_type n); - explicit deque(size_type n, const Allocator& a); // C++14 + explicit deque(size_type n, const allocator_type& a); // C++14 deque(size_type n, const value_type& v); deque(size_type n, const value_type& v, const allocator_type& a); template diff --git a/include/forward_list b/include/forward_list index 2fbcdbe30..398226b8d 100644 --- a/include/forward_list +++ b/include/forward_list @@ -38,7 +38,7 @@ public: noexcept(is_nothrow_default_constructible::value); explicit forward_list(const allocator_type& a); explicit forward_list(size_type n); - explicit forward_list(size_type n, const Allocator& a); // C++14 + explicit forward_list(size_type n, const allocator_type& a); // C++14 forward_list(size_type n, const value_type& v); forward_list(size_type n, const value_type& v, const allocator_type& a); template diff --git a/include/list b/include/list index f37cffda4..800a1a3f5 100644 --- a/include/list +++ b/include/list @@ -40,7 +40,7 @@ public: noexcept(is_nothrow_default_constructible::value); explicit list(const allocator_type& a); explicit list(size_type n); - explicit list(size_type n, const Allocator& a); // C++14 + explicit list(size_type n, const allocator_type& a); // C++14 list(size_type n, const value_type& value); list(size_type n, const value_type& value, const allocator_type& a); template