diff options
Diffstat (limited to '9/sources/cxx-stl/llvm-libc++/libcxx/include/deque')
-rw-r--r-- | 9/sources/cxx-stl/llvm-libc++/libcxx/include/deque | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/9/sources/cxx-stl/llvm-libc++/libcxx/include/deque b/9/sources/cxx-stl/llvm-libc++/libcxx/include/deque index f099000..9b256b7 100644 --- a/9/sources/cxx-stl/llvm-libc++/libcxx/include/deque +++ b/9/sources/cxx-stl/llvm-libc++/libcxx/include/deque @@ -1208,7 +1208,7 @@ public: deque() _NOEXCEPT_(is_nothrow_default_constructible<allocator_type>::value) {} - _LIBCPP_INLINE_VISIBILITY deque(const allocator_type& __a) : __base(__a) {} + _LIBCPP_INLINE_VISIBILITY explicit deque(const allocator_type& __a) : __base(__a) {} explicit deque(size_type __n); #if _LIBCPP_STD_VER > 11 explicit deque(size_type __n, const _Allocator& __a); |