mirror of
https://github.com/yuzu-emu/yuzu-android
synced 2025-01-11 11:01:55 -08:00
Mark LogPacketHeaderEntry hash as noexcept
This commit is contained in:
parent
83f8c1a25e
commit
dca2e2c8f1
@ -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);
|
||||
|
Loading…
x
Reference in New Issue
Block a user