diff options
Diffstat (limited to 'store')
-rw-r--r-- | store/source/storbase.hxx | 2 | ||||
-rw-r--r-- | store/workben/t_page.cxx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/store/source/storbase.hxx b/store/source/storbase.hxx index 30d32605b2b1..1150a6bca570 100644 --- a/store/source/storbase.hxx +++ b/store/source/storbase.hxx @@ -156,7 +156,7 @@ public: bool operator== (long count) const { - return (m_pCount != 0) ? *m_pCount == count : false; + return (m_pCount != 0) && (*m_pCount == count); } }; diff --git a/store/workben/t_page.cxx b/store/workben/t_page.cxx index 54a32e15f2b1..2bf4ebbd53aa 100644 --- a/store/workben/t_page.cxx +++ b/store/workben/t_page.cxx @@ -78,7 +78,7 @@ public: bool operator== (long count) const { - return (m_pCount != 0) ? *m_pCount == count : false; + return (m_pCount != 0) && (*m_pCount == count); } friend void swap<> (SharedCount & lhs, SharedCount & rhs); // nothrow |