table/face: fix unused variable warnings in NameTree and NDNLP Slicer
refs #2290, #2287
Change-Id: I40f80f4c8a9fe830edafeada2bbd0b881194d0a3
diff --git a/daemon/table/name-tree.cpp b/daemon/table/name-tree.cpp
index 61a5364..d7cb544 100644
--- a/daemon/table/name-tree.cpp
+++ b/daemon/table/name-tree.cpp
@@ -339,7 +339,7 @@
}
}
- BOOST_ASSERT(isFound == true);
+ BOOST_VERIFY(isFound == true);
}
// remove this Entry and its Name Tree Node
@@ -625,7 +625,7 @@
node = node->m_next;
}
}
- BOOST_ASSERT(isFound == false);
+ BOOST_VERIFY(isFound == false);
// Reach to the end()
m_entry = m_nameTree.m_end;
return *this;
@@ -702,7 +702,7 @@
}
}
- BOOST_ASSERT(isFound == true);
+ BOOST_VERIFY(isFound == true);
if (i < parentChildrenList.size() - 1) // m_entry not the last child
{
m_entry = parentChildrenList[i + 1];