CBlockIndex::operator=

Assignment operators

Synopses

Declared in <chain.h>

Copy assignment is deleted to avoid accidental copies of block index entries.

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

Move assignment is deleted to avoid accidental copies of block index entries.

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