diff options
author | Stephan Bergmann <stephan.bergmann@allotropia.de> | 2024-12-09 10:57:49 +0100 |
---|---|---|
committer | Stephan Bergmann <stephan.bergmann@allotropia.de> | 2024-12-09 12:16:33 +0100 |
commit | 91c636c7f9484f650b6c494bf90212c57118f438 (patch) | |
tree | bed09cb5e6294de4cddffcaf89b686c37755bbcb /svl/source/crypto | |
parent | 8f9f04421b45d07b600078d968afa45384ee7060 (diff) |
Silence -Werror,-Wunused-private-field
...with !USE_CRYPTO_ANY (e.g., Android)
Change-Id: I139aceeea085420dd3ec31ced25b66a1671dc7ad
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/178130
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <stephan.bergmann@allotropia.de>
Diffstat (limited to 'svl/source/crypto')
-rw-r--r-- | svl/source/crypto/cryptosign.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/svl/source/crypto/cryptosign.cxx b/svl/source/crypto/cryptosign.cxx index 6a5f08077765..daa668c9e0f4 100644 --- a/svl/source/crypto/cryptosign.cxx +++ b/svl/source/crypto/cryptosign.cxx @@ -936,6 +936,7 @@ bool Signing::Sign(OStringBuffer& rCMSHexBuffer) { #if !USE_CRYPTO_ANY (void)rCMSHexBuffer; + (void)m_rSigningContext; return false; #else // Create the PKCS#7 object. |