Merge pull request #23 from masamitsu-murase/use_static_cast_for_hierarchy_navigation

Use static_cast instead of reinterpret_cast for hierarchy navigation.
mutable
j4cbo 8 years ago
commit e31ac4ebb4
  1. 4
      json11.cpp

@ -146,10 +146,10 @@ protected:
// Comparisons
bool equals(const JsonValue * other) const override {
return m_value == reinterpret_cast<const Value<tag, T> *>(other)->m_value;
return m_value == static_cast<const Value<tag, T> *>(other)->m_value;
}
bool less(const JsonValue * other) const override {
return m_value < reinterpret_cast<const Value<tag, T> *>(other)->m_value;
return m_value < static_cast<const Value<tag, T> *>(other)->m_value;
}
const T m_value;

Loading…
Cancel
Save