From ed6e19bbd06cdec2a9d75e4c2c338d47d759eecf Mon Sep 17 00:00:00 2001 From: Sadie Powell Date: Sun, 27 Mar 2022 15:33:31 +0100 Subject: Fix unsigned/const keyword ordering, remove unnecessary consts. --- include/hashcomp.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'include/hashcomp.h') diff --git a/include/hashcomp.h b/include/hashcomp.h index 10ebd312e..24e66cfc9 100644 --- a/include/hashcomp.h +++ b/include/hashcomp.h @@ -49,13 +49,13 @@ * This is provided as a pointer so that modules can change it to their custom mapping tables, * e.g. for national character support. */ -CoreExport extern unsigned const char *national_case_insensitive_map; +CoreExport extern const unsigned char* national_case_insensitive_map; /** Case insensitive map, ASCII rules. * That is; * [ != {, but A == a. */ -CoreExport extern unsigned const char ascii_case_insensitive_map[256]; +CoreExport extern const unsigned char ascii_case_insensitive_map[256]; /** The irc namespace contains a number of helper classes. */ -- cgit v1.3.1-10-gc9f91