diff options
author | w00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7> | 2007-08-09 19:49:01 +0000 |
---|---|---|
committer | w00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7> | 2007-08-09 19:49:01 +0000 |
commit | b42e3e0578e45478129ab6dec563061249104a04 (patch) | |
tree | 047d609877489d61b6322670f8ce9b44507d33b7 /include/inspircd.h | |
parent | b95d14170acc9face4da964d82cad46dfc0779da (diff) |
Remove an un-needed define while I poke around in here
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@7693 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'include/inspircd.h')
-rw-r--r-- | include/inspircd.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/include/inspircd.h b/include/inspircd.h index 34a256402..cb40e2734 100644 --- a/include/inspircd.h +++ b/include/inspircd.h @@ -54,14 +54,6 @@ */ #define ETIREDHAMSTERS EAGAIN -/** - * This define is used in place of strcmp when we - * want to check if a char* string contains only one - * letter. Pretty fast, its just two compares and an - * addition. - */ -#define IS_SINGLE(x,y) ( (*x == y) && (*(x+1) == 0) ) - /** Delete a pointer, and NULL its value */ template<typename T> inline void DELETE(T* x) |