From 23e630332890d34b7fb1f411d098d681718498a6 Mon Sep 17 00:00:00 2001 From: Cesar Pulles Date: Fri, 2 Jan 2026 20:34:46 +0100 Subject: [PATCH] Added DPP_EXPORT to bignum.h bn_deleter::operator() --- include/dpp/bignum.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/dpp/bignum.h b/include/dpp/bignum.h index 4ae6980955..d3078f22fd 100644 --- a/include/dpp/bignum.h +++ b/include/dpp/bignum.h @@ -58,7 +58,7 @@ class DPP_EXPORT bignumber { * * @param p Pointer to the `openssl_bignum` instance to delete. */ - void operator()(openssl_bignum* p) const noexcept; + DPP_EXPORT void operator()(openssl_bignum* p) const noexcept; }; /**