Minor to make the code compile with -pedantic-errors flag in g++

This commit is contained in:
Samer Afach 2018-05-21 14:06:48 +02:00
parent a9562500a0
commit 34fdb34b44

View file

@ -294,7 +294,7 @@ inline void ec_sig_deletor(ECDSA_SIG* ptr)
inline void ev_pkey_deletor(EVP_PKEY* ptr)
{
if (ptr) EVP_PKEY_free(ptr);
};
}
/// Useful typedefs
using bio_deletor_t = decltype(&bio_deletor);