Static analysis fix: replace 0 and NULL with nullptr (#738)

This commit is contained in:
Andy Maloney
2019-09-14 20:23:22 -04:00
committed by Jesse Beder
parent 6cdf363625
commit db0bda7087
6 changed files with 14 additions and 14 deletions

View File

@@ -52,7 +52,7 @@ inline Node::Node(Zombie)
: m_isValid(false), m_invalidKey{}, m_pMemory{}, m_pNode(nullptr) {}
inline Node::Node(Zombie, const std::string& key)
: m_isValid(false), m_invalidKey(key), m_pMemory{}, m_pNode(NULL) {}
: m_isValid(false), m_invalidKey(key), m_pMemory{}, m_pNode(nullptr) {}
inline Node::Node(detail::node& node, detail::shared_memory_holder pMemory)
: m_isValid(true), m_invalidKey{}, m_pMemory(pMemory), m_pNode(&node) {}