Merge pull request #60 from gocarlos/fix--compilation-with-visual-studio-14

fix: compilation with visual studio 14
This commit is contained in:
Arun Muralidharan 2020-02-27 11:44:04 +05:30 committed by GitHub
commit 4b6ed54e2e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -92,7 +92,7 @@ inline std::string base64_encode(const char* in, size_t len)
const auto encoded_siz = encoding_size(len); const auto encoded_siz = encoding_size(len);
result.resize(encoded_siz); result.resize(encoded_siz);
constexpr static const EMap emap{}; constexpr static const EMap emap;
int i = 0; int i = 0;
int j = 0; int j = 0;