Merge pull request #19 from TheQuantumPhysicist/master

Minor error fix to make the flag -pedantic-errors work
This commit is contained in:
Arun Muralidharan 2018-05-21 18:27:48 +05:30 committed by GitHub
commit d475665b72
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

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