mirror of
https://github.com/arun11299/cpp-jwt.git
synced 2025-05-19 19:28:33 +00:00
Merge pull request #19 from TheQuantumPhysicist/master
Minor error fix to make the flag -pedantic-errors work
This commit is contained in:
commit
d475665b72
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue