mirror of
https://github.com/doitsujin/dxvk.git
synced 2025-02-12 04:54:17 +01:00
[util] Add missing != operator to Sha1Hash
This commit is contained in:
parent
4b0a5dffb2
commit
0ac89ccd9e
@ -37,6 +37,10 @@ namespace dxvk {
|
|||||||
other.m_digest.size());
|
other.m_digest.size());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
bool operator != (const Sha1Hash& other) const {
|
||||||
|
return !this->operator == (other);
|
||||||
|
}
|
||||||
|
|
||||||
static Sha1Hash compute(
|
static Sha1Hash compute(
|
||||||
const void* data,
|
const void* data,
|
||||||
size_t size);
|
size_t size);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user