summaryrefslogtreecommitdiff
path: root/include/ctables.h
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2006-03-12 16:56:02 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2006-03-12 16:56:02 +0000
commit3a7fa1660c3d78f1f80f3502a8dae77642d3c3f9 (patch)
tree7b083b597727330920a5c70ca92a8c4a25982708 /include/ctables.h
parent1135a57ace24193f26ed3e679ca0945d97398988 (diff)
Const refs (this is about the last of them in the core api)
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@3694 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'include/ctables.h')
-rw-r--r--include/ctables.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/ctables.h b/include/ctables.h
index 7fca885bc..d98e1701d 100644
--- a/include/ctables.h
+++ b/include/ctables.h
@@ -59,7 +59,7 @@ class command_t
*/
std::string source;
- command_t(std::string cmd, char flags, int minpara) : command(cmd), flags_needed(flags), min_params(minpara)
+ command_t(const std::string &cmd, char flags, int minpara) : command(cmd), flags_needed(flags), min_params(minpara)
{
use_count = total_bytes = 0;
source = "<core>";