From f1b6d1b5388058fe06efd53e35b30cbcf3d716cb Mon Sep 17 00:00:00 2001 From: Marshall Clow Date: Mon, 9 Sep 2013 18:19:45 +0000 Subject: [PATCH] Update synopsis for list/forward_list/deque to match the allocator style of existing comment. No code change llvm-svn: 190320 --- libcxx/include/deque | 2 +- libcxx/include/forward_list | 2 +- libcxx/include/list | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/libcxx/include/deque b/libcxx/include/deque index 5bb8ff7a8ab2..e552858a5587 100644 --- a/libcxx/include/deque +++ b/libcxx/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/libcxx/include/forward_list b/libcxx/include/forward_list index 2fbcdbe30e51..398226b8d42d 100644 --- a/libcxx/include/forward_list +++ b/libcxx/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/libcxx/include/list b/libcxx/include/list index f37cffda4373..800a1a3f5aa8 100644 --- a/libcxx/include/list +++ b/libcxx/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