include/svl/cryptosign.hxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
New commits: commit 0ede438ded0baedffe92f9efaf02b0826b3b2a25 Author: Patrick Luby <[email protected]> AuthorDate: Tue Nov 12 10:07:29 2024 -0500 Commit: Miklos Vajna <[email protected]> CommitDate: Thu Feb 13 08:22:39 2025 +0100 Fix iOS build failure when building with Xcode 16.1 on macOS Sequoia Change-Id: I21c0ff32298bdc1309b2d0dd6152e1f5f43746e4 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/176485 Tested-by: Jenkins CollaboraOffice <[email protected]> Reviewed-by: Miklos Vajna <[email protected]> Reviewed-by: Patrick Luby <[email protected]> (cherry picked from commit c6a45e78fbbab54a05a0cc89e907d5a3cba87e5d) Reviewed-on: https://gerrit.libreoffice.org/c/core/+/181500 Tested-by: Jenkins diff --git a/include/svl/cryptosign.hxx b/include/svl/cryptosign.hxx index 503463686cf1..89740a042540 100644 --- a/include/svl/cryptosign.hxx +++ b/include/svl/cryptosign.hxx @@ -88,7 +88,7 @@ public: private: /// The certificate to use for signing. - svl::crypto::SigningContext& m_rSigningContext; + [[maybe_unused]] svl::crypto::SigningContext& m_rSigningContext; /// Data blocks (pointer-size pairs). std::vector<std::pair<const void*, sal_Int32>> m_dataBlocks;
