Replace 0 constant with nullptr in getCurrentStorage()
This commit is contained in:
parent
6f35fc4272
commit
f4dfaed19d
1 changed files with 1 additions and 1 deletions
|
@ -97,7 +97,7 @@ void Manager::addStorage(Cloud::Storage *storage, bool makeCurrent, bool saveCon
|
|||
Storage *Manager::getCurrentStorage() {
|
||||
if (_currentStorageIndex < _storages.size())
|
||||
return _storages[_currentStorageIndex];
|
||||
return 0;
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
void Manager::syncSaves(Storage::BoolCallback callback) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue