зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1833799 - Avoid a copy that clang 7 warns about. r=dom-storage-reviewers,janv
Differential Revision: https://phabricator.services.mozilla.com/D178417
This commit is contained in:
Родитель
5b8d15821d
Коммит
17cb194f8d
|
@ -452,7 +452,7 @@ int QuotaFullPathname(sqlite3_vfs* vfs, const char* zName, int nOut,
|
|||
NS_ConvertUTF8toUTF16 name(zName);
|
||||
|
||||
if (name.First() == '/') {
|
||||
return name;
|
||||
return std::move(name);
|
||||
}
|
||||
|
||||
QM_TRY_INSPECT(const auto& file,
|
||||
|
|
Загрузка…
Ссылка в новой задаче