mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-04 13:07:38 +03:00
Resolve compiler warnings for unused return values
* Fixes #1932 - See https://gcc.gnu.org/bugzilla/show_bug.cgi?id=66425#c29 Adding a negation before the function call allows the (void) syntax to work properly.
This commit is contained in:
parent
a0912b057e
commit
6a8b070b0a
4 changed files with 7 additions and 14 deletions
|
@ -235,7 +235,7 @@ void TestKeys::benchmarkTransformKey()
|
|||
|
||||
QBENCHMARK
|
||||
{
|
||||
Q_UNUSED(compositeKey->transform(kdf, result));
|
||||
Q_UNUSED(!compositeKey->transform(kdf, result));
|
||||
};
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue