mirror of
https://github.com/aria2/aria2.git
synced 2025-04-05 13:37:40 +03:00
Use std::unique_ptr for LpdMessage instead of std::shared_ptr
This commit is contained in:
parent
57f1902ee1
commit
c36370ef60
4 changed files with 15 additions and 17 deletions
|
@ -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));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue