diff options
| author | 2022-03-27 15:33:31 +0100 | |
|---|---|---|
| committer | 2022-03-27 15:41:28 +0100 | |
| commit | ed6e19bbd06cdec2a9d75e4c2c338d47d759eecf (patch) | |
| tree | 29d90503a51c54eafd0ba87bd34b961908d45b48 /include/hashcomp.h | |
| parent | Merge branch 'insp3' into master. (diff) | |
Fix unsigned/const keyword ordering, remove unnecessary consts.
Diffstat (limited to 'include/hashcomp.h')
| -rw-r--r-- | include/hashcomp.h | 4 |
1 files changed, 2 insertions, 2 deletions
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. */ |
