From: robertc <> Date: Fri, 11 Jul 2003 10:55:40 +0000 (+0000) Subject: Summary: More support MSVC's broken C++ parser. X-Git-Tag: SQUID_3_0_PRE1~39 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=4d501cd69e2cd1503e2f7d791d4ebb08290e2bcd;p=thirdparty%2Fsquid.git Summary: More support MSVC's broken C++ parser. Keywords: MSVC appears to misparse the constructor syntax for Debug::CurrentDebug. --- diff --git a/src/debug.cc b/src/debug.cc index 92585fc696..9e101b36fd 100644 --- a/src/debug.cc +++ b/src/debug.cc @@ -1,6 +1,6 @@ /* - * $Id: debug.cc,v 1.93 2003/07/08 23:01:46 robertc Exp $ + * $Id: debug.cc,v 1.94 2003/07/11 04:55:40 robertc Exp $ * * DEBUG: section 0 Debug Routines * AUTHOR: Harvest Derived @@ -537,4 +537,4 @@ Debug::finishDebug() { CurrentDebug = NULL; } -std::ostringstream *Debug::CurrentDebug (NULL); +std::ostringstream *Debug::CurrentDebug = NULL;