diff options
Diffstat (limited to 'core/device.cpp')
-rw-r--r-- | core/device.cpp | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/core/device.cpp b/core/device.cpp index b688e36eb..1c0d6d5c6 100644 --- a/core/device.cpp +++ b/core/device.cpp @@ -203,11 +203,6 @@ bool device::operator==(const device &a) const nickName == a.nickName; } -bool device::operator!=(const device &a) const -{ - return !(*this == a); -} - bool device::operator<(const device &a) const { return std::tie(deviceId, model) < std::tie(a.deviceId, a.model); |