From f7cab317b777bb8fedb4bd8f4eeb7e68bf712989 Mon Sep 17 00:00:00 2001 From: Neil Date: Sun, 22 Apr 2018 08:35:01 +1000 Subject: Remove casts between char and unsigned char where possible. --- lexlib/LexAccessor.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lexlib/LexAccessor.h') diff --git a/lexlib/LexAccessor.h b/lexlib/LexAccessor.h index d08bf3705..87557d8c1 100644 --- a/lexlib/LexAccessor.h +++ b/lexlib/LexAccessor.h @@ -106,7 +106,7 @@ public: return true; } char StyleAt(Sci_Position position) const { - return static_cast(pAccess->StyleAt(position)); + return pAccess->StyleAt(position); } Sci_Position GetLine(Sci_Position position) const { return pAccess->LineFromPosition(position); -- cgit v1.2.3