We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 93cb305 commit 17ad137Copy full SHA for 17ad137
yasio/string.hpp
@@ -70,7 +70,7 @@ class basic_string {
70
using my_type = basic_string<_Elem, _Alloc>;
71
static const size_t npos = -1;
72
basic_string() {}
73
- basic_string(nullptr_t) = delete;
+ basic_string(::std::nullptr_t) = delete;
74
explicit basic_string(size_type count) { resize(static_cast<size_type>(count)); }
75
basic_string(size_type count, const_reference val) { resize(static_cast<size_type>(count), val); }
76
template <typename _Iter, ::yasio::enable_if_t<::yasio::is_iterator<_Iter>::value, int> = 0>
0 commit comments