table: rename cs::iterator to cs::Table::const_iterator
refs #4914
Change-Id: I0d81a0983c6bbf8ad2bdf78eec4f37ac73ec3d2d
diff --git a/daemon/table/cs-policy.cpp b/daemon/table/cs-policy.cpp
index 4930af8..b51aac1 100644
--- a/daemon/table/cs-policy.cpp
+++ b/daemon/table/cs-policy.cpp
@@ -73,28 +73,28 @@
}
void
-Policy::afterInsert(iterator i)
+Policy::afterInsert(EntryRef i)
{
BOOST_ASSERT(m_cs != nullptr);
this->doAfterInsert(i);
}
void
-Policy::afterRefresh(iterator i)
+Policy::afterRefresh(EntryRef i)
{
BOOST_ASSERT(m_cs != nullptr);
this->doAfterRefresh(i);
}
void
-Policy::beforeErase(iterator i)
+Policy::beforeErase(EntryRef i)
{
BOOST_ASSERT(m_cs != nullptr);
this->doBeforeErase(i);
}
void
-Policy::beforeUse(iterator i)
+Policy::beforeUse(EntryRef i)
{
BOOST_ASSERT(m_cs != nullptr);
this->doBeforeUse(i);