Go to the source code of this file.
|
auto | operator delete (void *, void *) noexcept -> void |
|
auto | operator delete[] (void *, void *) noexcept -> void |
|
auto | operator new (etl::size_t count, void *ptr) noexcept -> void * |
| Called by the standard single-object placement new expression. The standard library implementation performs no action and returns ptr unmodified. The behavior is undefined if this function is called through a placement new expression and ptr is a null pointer.
|
|
auto | operator new[] (etl::size_t count, void *ptr) noexcept -> void * |
| Called by the standard array form placement new expression. The standard library implementation performs no action and returns ptr unmodified. The behavior is undefined if this function is called through a placement new expression and ptr is a null pointer.
|
|
◆ operator delete()
auto operator delete |
( |
void * |
, |
|
|
void * |
|
|
) |
| -> void |
|
inlinenoexcept |
◆ operator delete[]()
auto operator delete[] |
( |
void * |
, |
|
|
void * |
|
|
) |
| -> void |
|
inlinenoexcept |
◆ operator new()
auto operator new |
( |
etl::size_t |
count, |
|
|
void * |
ptr |
|
) |
| -> void*
|
|
inlinenoexcept |
Called by the standard single-object placement new expression. The standard library implementation performs no action and returns ptr unmodified. The behavior is undefined if this function is called through a placement new expression and ptr is a null pointer.
◆ operator new[]()
auto operator new[] |
( |
etl::size_t |
count, |
|
|
void * |
ptr |
|
) |
| -> void*
|
|
inlinenoexcept |
Called by the standard array form placement new expression. The standard library implementation performs no action and returns ptr unmodified. The behavior is undefined if this function is called through a placement new expression and ptr is a null pointer.