1
0
mirror of https://github.com/doitsujin/dxvk.git synced 2025-01-31 14:52:11 +01:00

[util] Add missing != operator to Sha1Hash

This commit is contained in:
Philip Rebohle 2019-10-18 00:33:18 +02:00
parent 4b0a5dffb2
commit 0ac89ccd9e
No known key found for this signature in database
GPG Key ID: C8CC613427A31C99

View File

@ -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);