[#CBlockIndex-operator_assign-03] = xref:CBlockIndex.adoc[CBlockIndex]::operator= :relfileprefix: ../ :mrdocs: Assignment operators == Synopses Declared in `<chain.h>` Copy assignment is deleted to avoid accidental copies of block index entries. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- xref:CBlockIndex.adoc[CBlockIndex]& xref:CBlockIndex/operator_assign-09.adoc[operator=](xref:CBlockIndex.adoc[CBlockIndex] const& other) = delete; ---- [.small]#xref:CBlockIndex/operator_assign-09.adoc[_» more..._]# Move assignment is deleted to avoid accidental copies of block index entries. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- xref:CBlockIndex.adoc[CBlockIndex]& xref:CBlockIndex/operator_assign-0b.adoc[operator=](xref:CBlockIndex.adoc[CBlockIndex]&& other) = delete; ---- [.small]#xref:CBlockIndex/operator_assign-0b.adoc[_» more..._]# [.small]#Created with https://www.mrdocs.com[MrDocs]#