Use std::unique_ptr for LpdMessage instead of std::shared_ptr

This commit is contained in:
Tatsuhiro Tsujikawa 2013-07-04 00:56:29 +09:00
parent 57f1902ee1
commit c36370ef60
4 changed files with 15 additions and 17 deletions

View file

@ -50,7 +50,7 @@ void LpdMessageReceiverTest::testReceiveMessage()
LPD_MULTICAST_ADDR, LPD_MULTICAST_PORT);
rcv.getSocket()->isReadable(5);
std::shared_ptr<LpdMessage> msg = rcv.receiveMessage();
auto msg = rcv.receiveMessage();
CPPUNIT_ASSERT(msg);
CPPUNIT_ASSERT_EQUAL(std::string("cd41c7fdddfd034a15a04d7ff881216e01c4ceaf"),
util::toHex(msg->infoHash));