diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/common/telemetry.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/common/telemetry.h b/src/common/telemetry.h index 2c945443b..155cf59ff 100644 --- a/src/common/telemetry.h +++ b/src/common/telemetry.h | |||
| @@ -84,11 +84,11 @@ public: | |||
| 84 | return value; | 84 | return value; |
| 85 | } | 85 | } |
| 86 | 86 | ||
| 87 | inline bool operator==(const Field<T>& other) { | 87 | bool operator==(const Field& other) const { |
| 88 | return (type == other.type) && (name == other.name) && (value == other.value); | 88 | return (type == other.type) && (name == other.name) && (value == other.value); |
| 89 | } | 89 | } |
| 90 | 90 | ||
| 91 | inline bool operator!=(const Field<T>& other) { | 91 | bool operator!=(const Field& other) const { |
| 92 | return !(*this == other); | 92 | return !(*this == other); |
| 93 | } | 93 | } |
| 94 | 94 | ||