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:
parent
4b0a5dffb2
commit
0ac89ccd9e
@ -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);
|
||||
|
Loading…
x
Reference in New Issue
Block a user