mirror of
https://github.com/arun11299/cpp-jwt.git
synced 2025-05-14 16:58:34 +00:00
Fix char signedness in DMap
This commit is contained in:
parent
af3fef94f1
commit
4392f4b538
1 changed files with 1 additions and 1 deletions
|
@ -153,7 +153,7 @@ public:
|
||||||
constexpr DMap() = default;
|
constexpr DMap() = default;
|
||||||
|
|
||||||
public:
|
public:
|
||||||
constexpr char at(size_t pos) const noexcept
|
constexpr signed char at(size_t pos) const noexcept
|
||||||
{
|
{
|
||||||
return X_ASSERT(pos < map_.size()), map_[pos];
|
return X_ASSERT(pos < map_.size()), map_[pos];
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue