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:
Tatsuhiro Tsujikawa 2013-07-04 21:44:09 +09:00
parent 107de58997
commit 0cdeaa8177
21 changed files with 47 additions and 47 deletions

View file

@ -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();