mirror of
https://github.com/aria2/aria2.git
synced 2025-04-05 21:47:37 +03:00
Convert most 0/NULL pointers to nullptr
Courtesy of llvm cpp11-migrate 3.3
This commit is contained in:
parent
9da17424c6
commit
d8f44ef4f6
87 changed files with 253 additions and 253 deletions
|
@ -229,7 +229,7 @@ void IndexedListTest::testGet()
|
|||
int b = 1;
|
||||
list.push_back(123, &a);
|
||||
list.push_back(1, &b);
|
||||
CPPUNIT_ASSERT_EQUAL((int*)0, list.get(1000));
|
||||
CPPUNIT_ASSERT_EQUAL((int*)nullptr, list.get(1000));
|
||||
CPPUNIT_ASSERT_EQUAL(&a, list.get(123));
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue