mirror of
https://github.com/aria2/aria2.git
synced 2025-04-05 05:27:38 +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
|
@ -68,7 +68,7 @@ void SegmentTest::testClear()
|
|||
PiecedSegment s(16*1024*10, p);
|
||||
s.updateWrittenLength(16*1024*10);
|
||||
CPPUNIT_ASSERT_EQUAL(16*1024*10, s.getWrittenLength());
|
||||
s.clear(0);
|
||||
s.clear(nullptr);
|
||||
CPPUNIT_ASSERT_EQUAL(0, s.getWrittenLength());
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue