PoolResource::operator=

Assignment operators

Synopses

Declared in <support/allocators/pool.h>

Deleted copy assignment; copying a PoolResource is not supported.

PoolResource&
operator=(PoolResource const& other) = delete;
» more...

Deleted move assignment; moving a PoolResource is not supported.

PoolResource&
operator=(PoolResource&& other) = delete;
» more...

Return Value

A reference to this resource (the operator is deleted).

Parameters

NameDescription
otherThe resource that would have been assigned from.