updateRoutingCache(entry.stream_, entry.area_);
}
-prefix_ void senf::log::Target::clear()
+prefix_ void senf::log::Target::flush()
{
RIB old;
rib_.swap(old);
# endif
RoutingEntry();
- bool operator==(RoutingEntry const & other);
+ bool operator==(RoutingEntry const & other) const;
private:
RoutingEntry(detail::StreamBase const * stream, detail::AreaBase const * area,
size_type size() const; ///< Number of routing table entries
bool empty() const; ///< \c true, if routing table empty, \c false otherwise
- void clear(); ///< Clear routing table
+ void flush(); ///< Clear routing table
private:
void route(detail::StreamBase const * stream, detail::AreaBase const * area,
};
BOOST_CHECK_EQUAL_COLLECTIONS( i, i_end, data, data + sizeof(data)/sizeof(data[0]) );
- BOOST_CHECK_EQUAL( *target.begin(), target[0] );
+ BOOST_CHECK( *target.begin() == target[0] );
target.unroute<senf::log::Debug>();
target.unroute<senf::log::test::myStream, senf::log::VERBOSE>();
target.unroute("senf::log::test::myStream", "", senf::log::IMPORTANT::value,
senf::log::Target::REJECT);
target.unroute(1);
- target.clear();
+ target.flush();
BOOST_CHECK( target.begin() == target.end() );
BOOST_CHECK( target.empty() );
- BOOST_CHECK( target.size() == 0 );
+ BOOST_CHECK_EQUAL( target.size(), 0u );
}
///////////////////////////////cc.e////////////////////////////////////////