Core/Misc: Added noexcept to move constructors and move assignment operators

This commit is contained in:
Shauren
2022-11-06 01:03:35 +01:00
parent c9f1606b76
commit fc37c42e55
12 changed files with 18 additions and 18 deletions

View File

@@ -352,7 +352,7 @@ namespace std
{
hash<string> hasher;
std::size_t operator()(fs::path const& key) const
std::size_t operator()(fs::path const& key) const noexcept
{
return hasher(key.generic_string());
}