summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2006-08-10 18:54:29 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2006-08-10 18:54:29 +0000
commit318552487d077bb20c8f320c564a7b1e652cf885 (patch)
tree6150c032f391d79eb410256b0b889d5e671139ad /include
parente51a4b5c29deac855496d6658a3c4612a61ffbb7 (diff)
Move strlower into nspace namespace where hash<std::string> lives
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@4850 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'include')
-rw-r--r--include/hashcomp.h2
-rw-r--r--include/helperfuncs.h1
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);