Commit cfa2acd6 by Maarten L. Hekkelman

backup

parent d9db2fe2
...@@ -88,6 +88,12 @@ class category ...@@ -88,6 +88,12 @@ class category
bool is_valid() const; bool is_valid() const;
bool operator==(const category &rhs) const;
bool operator!=(const category &rhs) const
{
return not operator==(rhs);
}
// -------------------------------------------------------------------- // --------------------------------------------------------------------
reference front() reference front()
......
...@@ -287,7 +287,7 @@ BOOST_AUTO_TEST_CASE(c_3) ...@@ -287,7 +287,7 @@ BOOST_AUTO_TEST_CASE(c_3)
for (auto r : c) for (auto r : c)
c2.emplace(r); c2.emplace(r);
// BOOST_CHECK(c == c2); BOOST_CHECK(c == c2);
} }
BOOST_AUTO_TEST_CASE(ci_1) BOOST_AUTO_TEST_CASE(ci_1)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment