From a344b8f5f124000f7f3820fbb1d87b8e0adf5092 Mon Sep 17 00:00:00 2001 From: Zufu Liu Date: Thu, 21 Oct 2021 22:26:59 +1100 Subject: Feature [feature-requests:#1417] Use unsigned as that defines wrap-around behaviour. --- src/PositionCache.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/PositionCache.h') diff --git a/src/PositionCache.h b/src/PositionCache.h index eb9b0d0a4..9a9f2e6fc 100644 --- a/src/PositionCache.h +++ b/src/PositionCache.h @@ -200,7 +200,7 @@ typedef std::map MapRepresentation; class SpecialRepresentations { MapRepresentation mapReprs; - short startByteHasReprs[0x100] {}; + unsigned short startByteHasReprs[0x100] {}; bool crlf = false; public: void SetRepresentation(std::string_view charBytes, std::string_view value); -- cgit v1.2.3