Making optimized version to compile
diff --git a/model/ccnx-l3-protocol.cc b/model/ccnx-l3-protocol.cc
index 2e55164..223c578 100644
--- a/model/ccnx-l3-protocol.cc
+++ b/model/ccnx-l3-protocol.cc
@@ -396,10 +396,10 @@
// Lookup of Pit (and associated Fib) entry for this Interest
tuple<const CcnxPitEntry&,bool,bool> ret = m_pit->Lookup (*header);
CcnxPitEntry const& pitEntry = ret.get<0> ();
- bool isNew = ret.get<1> ();
+ // bool isNew = ret.get<1> ();
bool isDuplicated = ret.get<2> ();
- NS_LOG_DEBUG ("isNew: " << isNew << ", isDup: " << isDuplicated);
+ // NS_LOG_DEBUG ("isNew: " << isNew << ", isDup: " << isDuplicated);
if (isDuplicated)
{