fix(): Linking Crypto-testrunner fails #3688

This commit is contained in:
Alex Fabijanic 2022-07-18 13:05:51 +02:00
parent 081563abb3
commit 0817b256b5

View File

@ -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;
}