diff options
-rw-r--r-- | include/inspircd.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/inspircd.h b/include/inspircd.h index f01305b44..befe07515 100644 --- a/include/inspircd.h +++ b/include/inspircd.h @@ -59,7 +59,7 @@ enum DebugLevel /** Delete a pointer, and NULL its value */ -template<typename T> void DELETE(T* x) +template<typename T> inline void DELETE(T* x) { delete x; x = NULL; |