Fix erroneous use of make_pair in sixlowpan
authorTommaso Pecorella <tommaso.pecorella@unifi.it>
Sat, 07 Dec 2013 14:30:03 +0100
changeset 10480 223927c63666
parent 10479 fc4ee8106e4a
child 10481 1636f0d5c9e2
child 10543 9bfe0c70dc6f
Fix erroneous use of make_pair in sixlowpan
src/sixlowpan/model/sixlowpan-net-device.cc
--- a/src/sixlowpan/model/sixlowpan-net-device.cc	Sat Dec 07 08:08:53 2013 +0100
+++ b/src/sixlowpan/model/sixlowpan-net-device.cc	Sat Dec 07 14:30:03 2013 +0100
@@ -1953,7 +1953,7 @@
     }
   if (!duplicate)
     {
-      m_fragments.insert (it, std::make_pair<Ptr<Packet>, uint16_t> (fragment, fragmentOffset));
+      m_fragments.insert (it, std::make_pair (fragment, fragmentOffset));
     }
 }