1
0
Fork 0

Please static analyis.

This commit is contained in:
Max Neunhoeffer 2017-01-24 12:30:07 +01:00
parent 8c577e65c7
commit e11c7c96c1
1 changed files with 2 additions and 0 deletions

View File

@ -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)),