diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-03-10 12:26:14 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-03-10 12:26:14 +0000 |
commit | b041a609e4b3f09205c7390fe661970629128468 (patch) | |
tree | bb460a4ed109cdf4e606eda42921af00735a3a42 /include | |
parent | 02497f5a89123c679260be44f4d2068b0a7f34e4 (diff) |
Revert to string but return a reference, should be about the same speed
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@3628 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'include')
-rw-r--r-- | include/cull_list.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/cull_list.h b/include/cull_list.h index df91e2eca..683e4493b 100644 --- a/include/cull_list.h +++ b/include/cull_list.h @@ -60,7 +60,7 @@ class CullItem userrec* GetUser(); /** Returns the user's quit reason */ - const char* GetReason(); + std::string& GetReason(); }; /** The CullList class can be used by modules, and is used |