mirror of
https://github.com/aria2/aria2.git
synced 2025-04-05 13:37:40 +03:00
Return nullptr directly where std::shared_ptr is expected
The constructor of std::shared_ptr which takes nullptr is not explicit so we can return nullptr directly.
This commit is contained in:
parent
107de58997
commit
0cdeaa8177
21 changed files with 47 additions and 47 deletions
|
@ -34,7 +34,7 @@ public:
|
|||
cuid_t cuid)
|
||||
{
|
||||
if(missingIndexes.empty()) {
|
||||
return std::shared_ptr<Piece>();
|
||||
return nullptr;
|
||||
} else {
|
||||
size_t index = missingIndexes.front();
|
||||
missingIndexes.pop_front();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue