diff options
author | om <om@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-08-31 13:00:21 +0000 |
---|---|---|
committer | om <om@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-08-31 13:00:21 +0000 |
commit | f33f516fefebae7bc0d15159f2ad32ce2d6149c8 (patch) | |
tree | 120238c4a4f926f788b1e14422b45817dc855a0c /include | |
parent | 7ce952d2b81bad9d9ec4c671f9e548910053f8db (diff) |
Remove extra/wrong qualifications, makes GCC 4.1 (at least) die
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@5088 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'include')
-rw-r--r-- | include/xline.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/include/xline.h b/include/xline.h index 26a3acf87..d9da09c0c 100644 --- a/include/xline.h +++ b/include/xline.h @@ -144,23 +144,23 @@ class XLineManager /** This functor is used by the std::sort() function to keep glines in order */ - static bool XLineManager::GSortComparison ( const GLine one, const GLine two ); + static bool GSortComparison ( const GLine one, const GLine two ); /** This functor is used by the std::sort() function to keep elines in order */ - static bool XLineManager::ESortComparison ( const ELine one, const ELine two ); + static bool ESortComparison ( const ELine one, const ELine two ); /** This functor is used by the std::sort() function to keep zlines in order */ - static bool XLineManager::ZSortComparison ( const ZLine one, const ZLine two ); + static bool ZSortComparison ( const ZLine one, const ZLine two ); /** This functor is used by the std::sort() function to keep klines in order */ - static bool XLineManager::KSortComparison ( const KLine one, const KLine two ); + static bool KSortComparison ( const KLine one, const KLine two ); /** This functor is used by the std::sort() function to keep qlines in order */ - static bool XLineManager::QSortComparison ( const QLine one, const QLine two ); + static bool QSortComparison ( const QLine one, const QLine two ); public: /* Lists for temporary lines with an expiry time */ |