From 0817b256b5d3b7714b1e8713140dd57cafa12046 Mon Sep 17 00:00:00 2001 From: Alex Fabijanic Date: Mon, 18 Jul 2022 13:05:51 +0200 Subject: [PATCH] fix(): Linking Crypto-testrunner fails #3688 --- Crypto/include/Poco/Crypto/Envelope.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Crypto/include/Poco/Crypto/Envelope.h b/Crypto/include/Poco/Crypto/Envelope.h index 0fe3c3ad2..5102de3d5 100644 --- a/Crypto/include/Poco/Crypto/Envelope.h +++ b/Crypto/include/Poco/Crypto/Envelope.h @@ -150,13 +150,13 @@ inline std::string Envelope::openAsString(const EVPPKey& privKey, const ByteVec& } -const Envelope::ByteVec& Envelope::getContent() const +inline const Envelope::ByteVec& Envelope::getContent() const { return _encContent; } -void Envelope::setContent(const ByteVec& enc) +inline void Envelope::setContent(const ByteVec& enc) { _encContent = enc; }