From 29537d94fea54256b537e1301527f71f04ef97c9 Mon Sep 17 00:00:00 2001 From: om Date: Fri, 10 Mar 2006 16:22:41 +0000 Subject: Another const reference conversion, and remove redundant declaration of userrec* Find() from globals.h git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@3633 e03df62e-2008-0410-955e-edbf42e46eb7 --- include/globals.h | 1 - include/helperfuncs.h | 2 +- src/helperfuncs.cpp | 2 +- 3 files changed, 2 insertions(+), 3 deletions(-) diff --git a/include/globals.h b/include/globals.h index 5b74aeaa1..e9f106b05 100644 --- a/include/globals.h +++ b/include/globals.h @@ -41,7 +41,6 @@ void WriteCommon(userrec *u, char* text, ...); void WriteCommonExcept(userrec *u, char* text, ...); void WriteWallOps(userrec *source, bool local_only, char* text, ...); int isnick(const char *n); -userrec* Find(std::string nick); chanrec* FindChan(const char* chan); void readfile(file_cache &F, const char* fname); diff --git a/include/helperfuncs.h b/include/helperfuncs.h index d99755035..90c23f776 100644 --- a/include/helperfuncs.h +++ b/include/helperfuncs.h @@ -60,7 +60,7 @@ void ServerNoticeAll(char* text, ...); void ServerPrivmsgAll(char* text, ...); void WriteWallOps(userrec *source, bool local_only, char* text, ...); void strlower(char *n); -userrec* Find(std::string nick); +userrec* Find(const std::string &nick); userrec* Find(const char* nick); chanrec* FindChan(const char* chan); long GetMaxBans(char* name); diff --git a/src/helperfuncs.cpp b/src/helperfuncs.cpp index ab9c3f46a..cbc52b4dd 100644 --- a/src/helperfuncs.cpp +++ b/src/helperfuncs.cpp @@ -1144,7 +1144,7 @@ void strlower(char *n) /* Find a user record by nickname and return a pointer to it */ -userrec* Find(std::string nick) +userrec* Find(const std::string &nick) { user_hash::iterator iter = clientlist.find(nick); -- cgit v1.2.3