From 34fdb34b44be980349043509d3594716a8bce139 Mon Sep 17 00:00:00 2001 From: Samer Afach Date: Mon, 21 May 2018 14:06:48 +0200 Subject: [PATCH] Minor to make the code compile with -pedantic-errors flag in g++ --- include/jwt/algorithm.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/jwt/algorithm.hpp b/include/jwt/algorithm.hpp index e778a6a..8aa528e 100644 --- a/include/jwt/algorithm.hpp +++ b/include/jwt/algorithm.hpp @@ -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);