From 1bc9bd15047f3302fd6f011e3f54b4ddae368388 Mon Sep 17 00:00:00 2001 From: Matias Fontanini Date: Sun, 21 Sep 2014 10:58:38 -0300 Subject: [PATCH] Fixed compiler warning on SnifferIterator. --- include/packet.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/packet.h b/include/packet.h index f73d229..fbe229e 100644 --- a/include/packet.h +++ b/include/packet.h @@ -106,6 +106,7 @@ public: } private: friend class BaseSniffer; + friend class SnifferIterator; PacketWrapper(pdu_type pdu, const Timestamp &ts) : pdu_(pdu), ts_(ts) {}