]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
Summary: More support MSVC's broken C++ parser.
authorrobertc <>
Fri, 11 Jul 2003 10:55:40 +0000 (10:55 +0000)
committerrobertc <>
Fri, 11 Jul 2003 10:55:40 +0000 (10:55 +0000)
Keywords:

MSVC appears to misparse the constructor syntax for Debug::CurrentDebug.

src/debug.cc

index 92585fc6963e0dbe893ce428f56ea752c4ad934e..9e101b36fd98dd0efcc519ed18c158efb67846d3 100644 (file)
@@ -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;