summaryrefslogtreecommitdiff
path: root/include/inspircd.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/inspircd.h')
-rw-r--r--include/inspircd.h2
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;