Unverified Commit b591d8ae authored by JBPennington's avatar JBPennington Committed by GitHub
Browse files

Update node impl.h for GCC unused variable warning (#981)

Removed the variable name in the defaulted function to make GCC happy.
parent 0579ae3d
......@@ -42,7 +42,7 @@ inline Node::Node(const detail::iterator_value& rhs)
m_pMemory(rhs.m_pMemory),
m_pNode(rhs.m_pNode) {}
inline Node::Node(const Node& rhs) = default;
inline Node::Node(const Node&) = default;
inline Node::Node(Zombie)
: m_isValid(false), m_invalidKey{}, m_pMemory{}, m_pNode(nullptr) {}
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment