diff --git a/solanaceae/toxcore/tox_key.hpp b/solanaceae/toxcore/tox_key.hpp index f1d959a..b2bcbdb 100644 --- a/solanaceae/toxcore/tox_key.hpp +++ b/solanaceae/toxcore/tox_key.hpp @@ -12,8 +12,8 @@ struct ToxKey { ToxKey(const std::vector& v); ToxKey(const std::uint8_t* d, std::size_t s); - constexpr bool operator==(const ToxKey& other) const { return data == other.data; } - constexpr bool operator!=(const ToxKey& other) const { return data != other.data; } + bool operator==(const ToxKey& other) const { return data == other.data; } + bool operator!=(const ToxKey& other) const { return data != other.data; } bool operator<(const ToxKey& other) const;