diff options
Diffstat (limited to 'include')
-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) |