Browse Source

key_map: Use std::tie for comparisons

pull/15/merge
Lioncash 10 years ago
parent
commit
3933b68c59
  1. 10
      src/common/key_map.h

10
src/common/key_map.h

@ -4,6 +4,7 @@
#pragma once #pragma once
#include <tuple>
#include "core/hle/service/hid/hid.h" #include "core/hle/service/hid/hid.h"
namespace KeyMap { namespace KeyMap {
@ -16,14 +17,13 @@ struct HostDeviceKey {
int device_id; ///< Uniquely identifies a host device int device_id; ///< Uniquely identifies a host device
bool operator<(const HostDeviceKey &other) const { bool operator<(const HostDeviceKey &other) const {
if (device_id == other.device_id) {
return key_code < other.key_code;
}
return device_id < other.device_id;
return std::tie(key_code, device_id) <
std::tie(other.key_code, other.device_id);
} }
bool operator==(const HostDeviceKey &other) const { bool operator==(const HostDeviceKey &other) const {
return device_id == other.device_id && key_code == other.key_code;
return std::tie(key_code, device_id) ==
std::tie(other.key_code, other.device_id);
} }
}; };

Loading…
Cancel
Save