summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorChloe Marcec <dmarcecguzman@gmail.com>2021-01-20 18:35:58 +1100
committerChloe Marcec <dmarcecguzman@gmail.com>2021-01-20 18:35:58 +1100
commitdca2e2c8f1d72802c4804db16f9aedb3bf41328d (patch)
treed63855062fb1ba3a22c73a1f696fceccff4a5b1e /src
parent83f8c1a25ef9a65eac0d000e41373bc212c5ba1c (diff)
Mark LogPacketHeaderEntry hash as noexcept
Diffstat (limited to 'src')
-rw-r--r--src/core/hle/service/lm/lm.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/lm/lm.cpp b/src/core/hle/service/lm/lm.cpp
index f4f6533ad..93e1fde01 100644
--- a/src/core/hle/service/lm/lm.cpp
+++ b/src/core/hle/service/lm/lm.cpp
@@ -39,7 +39,7 @@ struct LogPacketHeaderEntry {
namespace std {
template <>
struct hash<Service::LM::LogPacketHeaderEntry> {
- std::size_t operator()(const Service::LM::LogPacketHeaderEntry& k) const {
+ std::size_t operator()(const Service::LM::LogPacketHeaderEntry& k) const noexcept {
std::size_t seed{};
boost::hash_combine(seed, k.pid);
boost::hash_combine(seed, k.tid);