diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-03-11 15:22:26 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-03-11 15:22:26 +0000 |
commit | 981ca37d6641404548a13623b90438f8f1c87ded (patch) | |
tree | e35373c8b3f647ee64f68a1f29d88743ff3c7eae /src/modules/m_operwho.cpp | |
parent | 0efd83fa4b6a03d28d1e4853ae262edb48b096b0 (diff) |
Yet more const ref changes
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@3658 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules/m_operwho.cpp')
-rw-r--r-- | src/modules/m_operwho.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_operwho.cpp b/src/modules/m_operwho.cpp index 53f87b087..626c03df6 100644 --- a/src/modules/m_operwho.cpp +++ b/src/modules/m_operwho.cpp @@ -61,7 +61,7 @@ class ModuleOperWho : public Module List[I_OnPreCommand] = 1; } - virtual int OnPreCommand(std::string command, char **parameters, int pcnt, userrec *user, bool validated) + virtual int OnPreCommand(const std::string &command, char **parameters, int pcnt, userrec *user, bool validated) { if ((!*user->oper) || (command != "WHO")) |