Avoid unqualified use of `std::move`

This commit is contained in:
Martchus 2023-12-16 23:07:00 +01:00
parent 141d8fa3f5
commit 40e2fb82de
1 changed files with 1 additions and 1 deletions

View File

@ -760,7 +760,7 @@ PackageLocation Database::locatePackage(const string &packageName) const
break; break;
} }
} catch (std::filesystem::filesystem_error &e) { } catch (std::filesystem::filesystem_error &e) {
res.error = move(e); res.error = std::move(e);
} }
return res; return res;
} }