diff --git a/src/util/sha1/sha1_util.h b/src/util/sha1/sha1_util.h index f18cf9d9e..9d83ab8c1 100644 --- a/src/util/sha1/sha1_util.h +++ b/src/util/sha1/sha1_util.h @@ -37,6 +37,10 @@ namespace dxvk { other.m_digest.size()); } + bool operator != (const Sha1Hash& other) const { + return !this->operator == (other); + } + static Sha1Hash compute( const void* data, size_t size);