Lines Matching full:replaceable

52 void* operator new(std::size_t size);                                   // replaceable, nodiscard i…
53 void* operator new(std::size_t size, std::align_val_t alignment); // replaceable, C++17, nodi…
54 void* operator new(std::size_t size, const std::nothrow_t&) noexcept; // replaceable, nodiscard i…
56 … const std::nothrow_t&) noexcept; // replaceable, C++17, nodiscard in C++20
57 void operator delete(void* ptr) noexcept; // replaceable
58 void operator delete(void* ptr, std::size_t size) noexcept; // replaceable, C++14
59 void operator delete(void* ptr, std::align_val_t alignment) noexcept; // replaceable, C++17
61 std::align_val_t alignment) noexcept; // replaceable, C++17
62 void operator delete(void* ptr, const std::nothrow_t&) noexcept; // replaceable
64 const std::nothrow_t&) noexcept; // replaceable, C++17
66 void* operator new[](std::size_t size); // replaceable, nodiscard i…
68 … std::align_val_t alignment) noexcept; // replaceable, C++17, nodiscard in C++20
69 void* operator new[](std::size_t size, const std::nothrow_t&) noexcept; // replaceable, nodiscard i…
71 … const std::nothrow_t&) noexcept; // replaceable, C++17, nodiscard in C++20
72 void operator delete[](void* ptr) noexcept; // replaceable
73 void operator delete[](void* ptr, std::size_t size) noexcept; // replaceable, C++14
75 std::align_val_t alignment) noexcept; // replaceable, C++17
77 std::align_val_t alignment) noexcept; // replaceable, C++17
78 void operator delete[](void* ptr, const std::nothrow_t&) noexcept; // replaceable
80 const std::nothrow_t&) noexcept; // replaceable, C++17