table: Remove operator== for Exclude, which is now a part of the library

Change-Id: I7b6d80cff6200e2c7d7d8529d2736bc275f1b6e7
diff --git a/daemon/table/pit.cpp b/daemon/table/pit.cpp
index eb3e453..21b4321 100644
--- a/daemon/table/pit.cpp
+++ b/daemon/table/pit.cpp
@@ -44,15 +44,6 @@
 }
 
 static inline bool
-operator==(const Exclude& a, const Exclude& b)
-{
-  const Block& aBlock = a.wireEncode();
-  const Block& bBlock = b.wireEncode();
-  return aBlock.size() == bBlock.size() &&
-         0 == memcmp(aBlock.wire(), bBlock.wire(), aBlock.size());
-}
-
-static inline bool
 predicate_PitEntry_similar_Interest(const shared_ptr<pit::Entry>& entry,
                                     const Interest& interest)
 {