Merge pull request #23 from masamitsu-murase/use_static_cast_for_hierarchy_navigation

Use static_cast instead of reinterpret_cast for hierarchy navigation.
mutable-v2
j4cbo 2014-12-03 16:29:28 -08:00
commit e31ac4ebb4
1 changed files with 2 additions and 2 deletions

View File

@ -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;