diff options
author | danieldg <danieldg@e03df62e-2008-0410-955e-edbf42e46eb7> | 2009-09-02 00:50:35 +0000 |
---|---|---|
committer | danieldg <danieldg@e03df62e-2008-0410-955e-edbf42e46eb7> | 2009-09-02 00:50:35 +0000 |
commit | c32734fb23bb7c811076d1f4acc819020533e89c (patch) | |
tree | 39db731b922e4b6d7ea4c07a5d93c50db433dd2e /include/modules.h | |
parent | 9efd48a3bd10d72d4f9cb1823aa7fbaefaece374 (diff) |
Fix some ICC-found warnings and remove unused #define
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11639 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'include/modules.h')
-rw-r--r-- | include/modules.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/modules.h b/include/modules.h index faefe9041..51cc37f3f 100644 --- a/include/modules.h +++ b/include/modules.h @@ -101,14 +101,14 @@ struct ModResult { { return !res; } - bool check(bool def) + bool check(bool def) const { return (res == 1 || (res == 0 && def)); } /** * Merges two results, preferring ALLOW to DENY */ - const ModResult operator+(const ModResult& r) + ModResult operator+(const ModResult& r) const { if (res == r.res || r.res == 0) return *this; |