Skip to content

Commit d02a544

Browse files
authored
Merge pull request arun11299#50 from dashprint/fix-char-signedness
Fix char signedness in DMap
2 parents af3fef9 + 4392f4b commit d02a544

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/jwt/base64.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ class DMap
153153
constexpr DMap() = default;
154154

155155
public:
156-
constexpr char at(size_t pos) const noexcept
156+
constexpr signed char at(size_t pos) const noexcept
157157
{
158158
return X_ASSERT(pos < map_.size()), map_[pos];
159159
}

0 commit comments

Comments
 (0)