mirror of https://gitee.com/bigwinds/arangodb
Please static analyis.
This commit is contained in:
parent
8c577e65c7
commit
e11c7c96c1
|
@ -139,6 +139,8 @@ std::string Node::uri() const {
|
|||
/// Move constructor
|
||||
Node::Node(Node&& other)
|
||||
: _node_name(std::move(other._node_name)),
|
||||
_parent(nullptr),
|
||||
_store(nullptr),
|
||||
_children(std::move(other._children)),
|
||||
_value(std::move(other._value)),
|
||||
_vecBuf(std::move(other._vecBuf)),
|
||||
|
|
Loading…
Reference in New Issue