[libc++] Don't pass the allocator in substr()
This bug was dicoved when implementing P2438R2. Fixes #57190 Reviewed By: ldionne, Mordante, #libc Spies: libcxx-commits Differential Revision: https://reviews.llvm.org/D138069
This commit is contained in:
parent
54be300f7e
commit
ad79455fad
|
@ -1430,21 +1430,20 @@ public:
|
||||||
|
|
||||||
_LIBCPP_CONSTEXPR_SINCE_CXX20 size_type copy(value_type* __s, size_type __n, size_type __pos = 0) const;
|
_LIBCPP_CONSTEXPR_SINCE_CXX20 size_type copy(value_type* __s, size_type __n, size_type __pos = 0) const;
|
||||||
|
|
||||||
// TODO: Maybe don't pass in the allocator. See https://llvm.org/PR57190
|
|
||||||
#if _LIBCPP_STD_VER <= 20
|
#if _LIBCPP_STD_VER <= 20
|
||||||
_LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX20
|
_LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX20
|
||||||
basic_string substr(size_type __pos = 0, size_type __n = npos) const {
|
basic_string substr(size_type __pos = 0, size_type __n = npos) const {
|
||||||
return basic_string(*this, __pos, __n, __alloc());
|
return basic_string(*this, __pos, __n);
|
||||||
}
|
}
|
||||||
#else
|
#else
|
||||||
_LIBCPP_HIDE_FROM_ABI constexpr
|
_LIBCPP_HIDE_FROM_ABI constexpr
|
||||||
basic_string substr(size_type __pos = 0, size_type __n = npos) const& {
|
basic_string substr(size_type __pos = 0, size_type __n = npos) const& {
|
||||||
return basic_string(*this, __pos, __n, __alloc());
|
return basic_string(*this, __pos, __n);
|
||||||
}
|
}
|
||||||
|
|
||||||
_LIBCPP_HIDE_FROM_ABI constexpr
|
_LIBCPP_HIDE_FROM_ABI constexpr
|
||||||
basic_string substr(size_type __pos = 0, size_type __n = npos) && {
|
basic_string substr(size_type __pos = 0, size_type __n = npos) && {
|
||||||
return basic_string(std::move(*this), __pos, __n, __alloc());
|
return basic_string(std::move(*this), __pos, __n);
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
|
@ -16,6 +16,7 @@
|
||||||
#include <algorithm>
|
#include <algorithm>
|
||||||
#include <cassert>
|
#include <cassert>
|
||||||
|
|
||||||
|
#include "test_allocator.h"
|
||||||
#include "test_macros.h"
|
#include "test_macros.h"
|
||||||
#include "min_allocator.h"
|
#include "min_allocator.h"
|
||||||
|
|
||||||
|
@ -119,11 +120,37 @@ TEST_CONSTEXPR_CXX20 bool test() {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
TEST_CONSTEXPR_CXX20 bool test_alloc() {
|
||||||
|
{
|
||||||
|
using alloc = test_allocator<char>;
|
||||||
|
using string = std::basic_string<char, std::char_traits<char>, alloc>;
|
||||||
|
test_allocator_statistics stats;
|
||||||
|
{
|
||||||
|
string str((alloc(&stats)));
|
||||||
|
stats = test_allocator_statistics();
|
||||||
|
(void)str.substr();
|
||||||
|
assert(stats.moved == 0);
|
||||||
|
assert(stats.copied == 0);
|
||||||
|
}
|
||||||
|
{
|
||||||
|
string str((alloc(&stats)));
|
||||||
|
stats = test_allocator_statistics();
|
||||||
|
(void)std::move(str).substr();
|
||||||
|
assert(stats.moved == 0);
|
||||||
|
assert(stats.copied == 0);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
int main(int, char**)
|
int main(int, char**)
|
||||||
{
|
{
|
||||||
test();
|
test();
|
||||||
|
test_alloc();
|
||||||
#if TEST_STD_VER > 17
|
#if TEST_STD_VER > 17
|
||||||
static_assert(test());
|
static_assert(test());
|
||||||
|
static_assert(test_alloc());
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
|
|
Loading…
Reference in New Issue