mirror of
https://github.com/aria2/aria2.git
synced 2025-04-05 21:47:37 +03:00
Require -std=c++11 and use std::shared_ptr instead of SharedHandle
This commit is contained in:
parent
126a4bde61
commit
07d270c87e
709 changed files with 6305 additions and 6878 deletions
|
@ -65,7 +65,7 @@ void ValueBaseTest::testDowncast()
|
|||
CPPUNIT_ASSERT(x);
|
||||
CPPUNIT_ASSERT_EQUAL(static_cast<Integer::ValueType>(100), x->i());
|
||||
CPPUNIT_ASSERT(!downcast<String>(&integer));
|
||||
SharedHandle<Integer> si(new Integer(101));
|
||||
std::shared_ptr<Integer> si(new Integer(101));
|
||||
const Integer* x2 = downcast<Integer>(si);
|
||||
CPPUNIT_ASSERT_EQUAL(static_cast<Integer::ValueType>(101), x2->i());
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue