Fix char signedness in DMap

This commit is contained in:
Lubos Dolezel 2019-07-13 20:10:20 +02:00
parent af3fef94f1
commit 4392f4b538

View file

@ -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];
} }