From 3ba8b0cce3c91f5de8e74bb621fb3bb05831edc6 Mon Sep 17 00:00:00 2001 From: Alexey Sokolov Date: Sun, 15 Oct 2017 18:00:00 +0100 Subject: [PATCH] Stop mixing up ./configure --enable-debug with znc --debug Close #1449 See #1446 --- src/ZNCDebug.cpp | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/src/ZNCDebug.cpp b/src/ZNCDebug.cpp index 775c1f31..46f67574 100644 --- a/src/ZNCDebug.cpp +++ b/src/ZNCDebug.cpp @@ -22,12 +22,7 @@ #include bool CDebug::stdoutIsTTY = true; -bool CDebug::debug = -#ifdef _DEBUG - true; -#else - false; -#endif +bool CDebug::debug = false; CString CDebug::Filter(const CString& sUnfilteredLine) { CString sFilteredLine = sUnfilteredLine;