[StorageV2] Fix move constructor for delta

Reviewers: mferencevic, teon.banek

Reviewed By: mferencevic

Differential Revision: https://phabricator.memgraph.io/D2158
This commit is contained in:
Marin Tomic 2019-07-01 14:19:35 +02:00
parent 71c76cfb73
commit c7a8be31cb

View File

@ -25,7 +25,7 @@ struct Delta {
value(other.value),
timestamp(other.timestamp),
command_id(other.command_id),
prev(nullptr),
prev(other.prev),
next(other.next.load()) {}
Delta(const Delta &) = delete;