1
0
mirror of https://github.com/anope/anope.git synced 2026-07-09 10:23:12 +02:00

Fix some methods that should have been marked as CoreExport.

This commit is contained in:
Sadie Powell
2022-01-13 00:34:51 +00:00
parent 33b42ce86e
commit 6486956401
+3 -3
View File
@@ -28,9 +28,9 @@ namespace Anope
/* Casemap in use by Anope. ci::string's comparison functions use this (and thus Anope::string) */
extern std::locale casemap;
extern void CaseMapRebuild();
extern unsigned char tolower(unsigned char);
extern unsigned char toupper(unsigned char);
extern CoreExport void CaseMapRebuild();
extern CoreExport unsigned char tolower(unsigned char);
extern CoreExport unsigned char toupper(unsigned char);
/* ASCII case insensitive ctype. */
template<typename char_type>