summaryrefslogtreecommitdiff
path: root/src/users.cpp
diff options
context:
space:
mode:
authorom <om@e03df62e-2008-0410-955e-edbf42e46eb7>2006-03-09 21:11:50 +0000
committerom <om@e03df62e-2008-0410-955e-edbf42e46eb7>2006-03-09 21:11:50 +0000
commit4fa0251cfb55dce9511a4faf00eb7545b74a7f18 (patch)
treed97c0eba1328629582779fd81e9d560fe19b347b /src/users.cpp
parent0da6981ee161cbf86de1171dde94cbc915946262 (diff)
Changing by-value parameters to const references
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@3605 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/users.cpp')
-rw-r--r--src/users.cpp9
1 files changed, 4 insertions, 5 deletions
diff --git a/src/users.cpp b/src/users.cpp
index 3b6a10197..13146a086 100644
--- a/src/users.cpp
+++ b/src/users.cpp
@@ -246,7 +246,7 @@ void userrec::RemoveInvite(irc::string &channel)
}
}
-bool userrec::HasPermission(std::string &command)
+bool userrec::HasPermission(const std::string &command)
{
char* mycmd;
char* savept;
@@ -295,7 +295,7 @@ bool userrec::HasPermission(std::string &command)
}
-bool userrec::AddBuffer(std::string a)
+bool userrec::AddBuffer(const std::string &a)
{
std::string b = "";
char* n = (char*)a.c_str();
@@ -355,7 +355,7 @@ std::string userrec::GetBuffer()
return ret;
}
-void userrec::AddWriteBuf(std::string data)
+void userrec::AddWriteBuf(const std::string &data)
{
if (*this->GetWriteError())
return;
@@ -397,7 +397,7 @@ void userrec::FlushWriteBuf()
}
}
-void userrec::SetWriteError(std::string error)
+void userrec::SetWriteError(const std::string &error)
{
log(DEBUG,"Setting error string for %s to '%s'",this->nick,error.c_str());
// don't try to set the error twice, its already set take the first string.
@@ -849,4 +849,3 @@ void force_nickchange(userrec* user,const char* newnick)
}
}
}
-