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

Removed the variable name in the defaulted function to make GCC happy.
This commit is contained in:
JBPennington
2021-07-10 09:07:12 -07:00
committed by GitHub
parent 0579ae3d97
commit b591d8ae2a

View File

@@ -42,7 +42,7 @@ inline Node::Node(const detail::iterator_value& rhs)
m_pMemory(rhs.m_pMemory), m_pMemory(rhs.m_pMemory),
m_pNode(rhs.m_pNode) {} m_pNode(rhs.m_pNode) {}
inline Node::Node(const Node& rhs) = default; inline Node::Node(const Node&) = default;
inline Node::Node(Zombie) inline Node::Node(Zombie)
: m_isValid(false), m_invalidKey{}, m_pMemory{}, m_pNode(nullptr) {} : m_isValid(false), m_invalidKey{}, m_pMemory{}, m_pNode(nullptr) {}