aboutsummaryrefslogtreecommitdiff
path: root/contrib/llvm-project/libcxx/include/memory_resource
diff options
context:
space:
mode:
authorDimitry Andric <dim@FreeBSD.org>2023-09-02 21:17:18 +0000
committerDimitry Andric <dim@FreeBSD.org>2024-01-07 17:46:17 +0000
commitfe013be447cd855ccaf6094a1d06aea570450629 (patch)
tree9adc1e0a5d25b6280995832bb29d592fb80554a6 /contrib/llvm-project/libcxx/include/memory_resource
parent2f3b605b2e159522ecab77fd518e8139aaf581e9 (diff)
Diffstat (limited to 'contrib/llvm-project/libcxx/include/memory_resource')
-rw-r--r--contrib/llvm-project/libcxx/include/memory_resource4
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/llvm-project/libcxx/include/memory_resource b/contrib/llvm-project/libcxx/include/memory_resource
index 4b393433696f..276e08f23fa1 100644
--- a/contrib/llvm-project/libcxx/include/memory_resource
+++ b/contrib/llvm-project/libcxx/include/memory_resource
@@ -22,7 +22,7 @@ namespace std::pmr {
bool operator==(const memory_resource& a,
const memory_resource& b) noexcept;
bool operator!=(const memory_resource& a,
- const memory_resource& b) noexcept;
+ const memory_resource& b) noexcept; // removed in C++20
template <class Tp> class polymorphic_allocator;
@@ -31,7 +31,7 @@ namespace std::pmr {
const polymorphic_allocator<T2>& b) noexcept;
template <class T1, class T2>
bool operator!=(const polymorphic_allocator<T1>& a,
- const polymorphic_allocator<T2>& b) noexcept;
+ const polymorphic_allocator<T2>& b) noexcept; // removed in C++20
// Global memory resources
memory_resource* set_default_resource(memory_resource* r) noexcept;