Skip to content

Commit

Permalink
explicit constructor initialization for EMap
Browse files Browse the repository at this point in the history
  • Loading branch information
arun11299 committed Jun 13, 2020
1 parent 701f4f2 commit 2bb5623
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/jwt/base64.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ inline std::string base64_encode(const char* in, size_t len)
const auto encoded_siz = encoding_size(len);
result.resize(encoded_siz);

constexpr static const EMap emap;
constexpr static const EMap emap{};

int i = 0;
int j = 0;
Expand Down

0 comments on commit 2bb5623

Please sign in to comment.