diff --git a/libcxx/docs/Status/Cxx2bPapers.csv b/libcxx/docs/Status/Cxx2bPapers.csv --- a/libcxx/docs/Status/Cxx2bPapers.csv +++ b/libcxx/docs/Status/Cxx2bPapers.csv @@ -21,5 +21,5 @@ "`P1951R1 `__","LWG","Default Arguments for pair Forwarding Constructor","June 2021","","" "`P1989R2 `__","LWG","Range constructor for std::string_view","June 2021","","" "`P2136R3 `__","LWG","invoke_r","June 2021","","" -"`P2166R1 `__","LWG","A Proposal to Prohibit std::basic_string and std::basic_string_view construction from nullptr","June 2021","","" +"`P2166R1 `__","LWG","A Proposal to Prohibit std::basic_string and std::basic_string_view construction from nullptr","June 2021","|Complete|","13.0" "","","","","","" \ No newline at end of file diff --git a/libcxx/include/string b/libcxx/include/string --- a/libcxx/include/string +++ b/libcxx/include/string @@ -110,6 +110,7 @@ explicit basic_string(const T& t, const Allocator& a = Allocator()); // C++17 basic_string(const value_type* s, const allocator_type& a = allocator_type()); basic_string(const value_type* s, size_type n, const allocator_type& a = allocator_type()); + basic_string(nullptr_t) = delete; // C++2b basic_string(size_type n, value_type c, const allocator_type& a = allocator_type()); template basic_string(InputIterator begin, InputIterator end, @@ -130,6 +131,7 @@ allocator_type::propagate_on_container_move_assignment::value || allocator_type::is_always_equal::value ); // C++17 basic_string& operator=(const value_type* s); + basic_string& operator=(nullptr_t) = delete; // C++2b basic_string& operator=(value_type c); basic_string& operator=(initializer_list); @@ -843,6 +845,10 @@ _LIBCPP_INLINE_VISIBILITY basic_string(const _CharT* __s, const _Allocator& __a); +#if _LIBCPP_STD_VER > 20 + basic_string(nullptr_t) = delete; +#endif + _LIBCPP_INLINE_VISIBILITY basic_string(const _CharT* __s, size_type __n); _LIBCPP_INLINE_VISIBILITY @@ -906,6 +912,9 @@ basic_string& operator=(initializer_list __il) {return assign(__il.begin(), __il.size());} #endif _LIBCPP_INLINE_VISIBILITY basic_string& operator=(const value_type* __s) {return assign(__s);} +#if _LIBCPP_STD_VER > 20 + basic_string& operator=(nullptr_t) = delete; +#endif basic_string& operator=(value_type __c); #if _LIBCPP_DEBUG_LEVEL == 2 diff --git a/libcxx/include/string_view b/libcxx/include/string_view --- a/libcxx/include/string_view +++ b/libcxx/include/string_view @@ -83,6 +83,7 @@ basic_string_view& operator=(const basic_string_view&) noexcept = default; template constexpr basic_string_view(const charT* str); + basic_string_view(nullptr_t) = delete; // C++2b constexpr basic_string_view(const charT* str, size_type len); // 7.4, basic_string_view iterator support @@ -273,6 +274,10 @@ basic_string_view(const _CharT* __s) : __data(__s), __size(_VSTD::__char_traits_length_checked<_Traits>(__s)) {} +#if _LIBCPP_STD_VER > 20 + basic_string_view(nullptr_t) = delete; +#endif + // [string.view.iterators], iterators _LIBCPP_CONSTEXPR _LIBCPP_INLINE_VISIBILITY const_iterator begin() const _NOEXCEPT { return cbegin(); } diff --git a/libcxx/test/std/strings/basic.string/string.cons/nullptr.fail.cpp b/libcxx/test/std/strings/basic.string/string.cons/nullptr.fail.cpp new file mode 100644 --- /dev/null +++ b/libcxx/test/std/strings/basic.string/string.cons/nullptr.fail.cpp @@ -0,0 +1,21 @@ +//===----------------------------------------------------------------------===// +// +// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. +// See https://llvm.org/LICENSE.txt for license information. +// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception +// +//===----------------------------------------------------------------------===// + +// UNSUPPORTED: c++03, c++11, c++14, c++17, c++20 + +// + +// basic_string(nullptr_t) = delete; // C++2b + +#include + +int main(int, char**) { + std::string s(nullptr); // expected-error {{call to deleted constructor}} + + return 0; +} diff --git a/libcxx/test/std/strings/basic.string/string.cons/nullptr_assignment.fail.cpp b/libcxx/test/std/strings/basic.string/string.cons/nullptr_assignment.fail.cpp new file mode 100644 --- /dev/null +++ b/libcxx/test/std/strings/basic.string/string.cons/nullptr_assignment.fail.cpp @@ -0,0 +1,22 @@ +//===----------------------------------------------------------------------===// +// +// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. +// See https://llvm.org/LICENSE.txt for license information. +// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception +// +//===----------------------------------------------------------------------===// + +// UNSUPPORTED: c++03, c++11, c++14, c++17, c++20 + +// + +// basic_string& operator=(nullptr_t) = delete; // C++2b + +#include + +int main(int, char**) { + std::string s; + s = nullptr; // expected-error {{overload resolution selected deleted operator '='}} + + return 0; +} diff --git a/libcxx/test/std/strings/string.view/string.view.cons/assign_nullptr.fail.cpp b/libcxx/test/std/strings/string.view/string.view.cons/assign_nullptr.fail.cpp new file mode 100644 --- /dev/null +++ b/libcxx/test/std/strings/string.view/string.view.cons/assign_nullptr.fail.cpp @@ -0,0 +1,22 @@ +//===----------------------------------------------------------------------===// +// +// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. +// See https://llvm.org/LICENSE.txt for license information. +// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception +// +//===----------------------------------------------------------------------===// + +// UNSUPPORTED: c++03, c++11, c++14, c++17, c++20 + +// + +// basic_string_view(nullptr_t) = delete; // C++2b + +#include + +int main(int, char**) { + std::string_view s; + s = nullptr; // expected-error {{attempt to use a deleted function}}} + + return 0; +} diff --git a/libcxx/test/std/strings/string.view/string.view.cons/from_nullptr.fail.cpp b/libcxx/test/std/strings/string.view/string.view.cons/from_nullptr.fail.cpp new file mode 100644 --- /dev/null +++ b/libcxx/test/std/strings/string.view/string.view.cons/from_nullptr.fail.cpp @@ -0,0 +1,19 @@ +//===----------------------------------------------------------------------===// +// +// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. +// See https://llvm.org/LICENSE.txt for license information. +// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception +// +//===----------------------------------------------------------------------===// + +// + +// basic_string_view(nullptr_t) = delete; // C++2b + +#include + +int main(int, char**) { + std::string_view s(nullptr); // expected-error {{call to deleted constructor}} + + return 0; +}