diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/hashcomp.h | 2 | ||||
-rw-r--r-- | include/helperfuncs.h | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/include/hashcomp.h b/include/hashcomp.h index 6c90ee919..0ca8a6fac 100644 --- a/include/hashcomp.h +++ b/include/hashcomp.h @@ -43,6 +43,8 @@ using irc::sockets::insp_inaddr; namespace nspace { + void strlower(char *n); + template<> struct hash<insp_inaddr> { size_t operator()(const insp_inaddr &a) const; diff --git a/include/helperfuncs.h b/include/helperfuncs.h index 21cb6caf3..7a55e5d23 100644 --- a/include/helperfuncs.h +++ b/include/helperfuncs.h @@ -48,7 +48,6 @@ enum DebugLevel #define STRINGIFY(x) STRINGIFY2(x) #define log(l, x, args...) InspIRCd::Log(l, __FILE__ ":" STRINGIFY(__LINE__) ": " x, ##args) -void strlower(char *n); void Error(int status); void ShowMOTD(userrec *user); void ShowRULES(userrec *user); |