mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-07-24 09:05:47 +00:00
Mark LogPacketHeaderEntry hash as noexcept
This commit is contained in:
parent
5cbbf4f865
commit
c9f841adfd
1 changed files with 1 additions and 1 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue