bot: revert simd-string changes

This commit is contained in:
jeefo 2023-06-26 10:28:01 +03:00
commit 7bc1704d6a
No known key found for this signature in database
GPG key ID: 927BCA0779BEA8ED
7 changed files with 10 additions and 13 deletions

View file

@ -27,7 +27,7 @@ public:
public:
constexpr bool operator == (const DangerStorage &rhs) const {
return cr::memcmp (rhs.data, data, sizeof (data));
return rhs.data[2] == data[2] && rhs.data[1] == data[1] && rhs.data[0] == data[0];
}
constexpr bool operator != (const DangerStorage &rhs) const {