CCoinsViewCache::ResetGuard::operator=

Assignment operators

Synopses

Declared in <coins.h>

Copy assignment is disabled so the cache is reset exactly once.

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

Move assignment is disabled so the cache is reset exactly once.

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

Return Value

Never returns; this overload is deleted.

Parameters

NameDescription
otherThe guard that would be assigned from (assignment is disabled).