diff --git a/example/jwks-verify.cpp b/example/jwks-verify.cpp index ee1fb1bd8..de4b13616 100644 --- a/example/jwks-verify.cpp +++ b/example/jwks-verify.cpp @@ -83,7 +83,8 @@ ARS9Ln8Wh5RsFuw/Y7Grg8FsoAVzV/Pns4cwjZG75ezXfk4UVpr4oO4B5jzazzCR // https://stackoverflow.com/a/30138974 unsigned char nonce[24]; RAND_bytes(nonce, sizeof(nonce)); - std::string jti = jwt::base::encode(std::string{reinterpret_cast(nonce), sizeof(nonce)}); + std::string jti = + jwt::base::encode(std::string{reinterpret_cast(nonce), sizeof(nonce)}); std::string token = jwt::create() .set_issuer("auth0")