From 7a1278419bc1ec4f3db38efeaf88203ffcf44c67 Mon Sep 17 00:00:00 2001 From: imaginos Date: Wed, 18 May 2005 22:15:06 +0000 Subject: [PATCH] enable debug in Csocket if _DEBUG is defined git-svn-id: https://znc.svn.sourceforge.net/svnroot/znc/trunk@339 726aef4b-f618-498e-8847-2d620e286838 --- main.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/main.h b/main.h index 9f470cd9..8d8f6cff 100644 --- a/main.h +++ b/main.h @@ -15,6 +15,10 @@ #define _NO_CSOCKET_NS #endif +#ifdef _DEBUG +#define __DEBUG__ +#endif + #include using std::cout; using std::cerr;