From 4d501cd69e2cd1503e2f7d791d4ebb08290e2bcd Mon Sep 17 00:00:00 2001 From: robertc <> Date: Fri, 11 Jul 2003 10:55:40 +0000 Subject: [PATCH] Summary: More support MSVC's broken C++ parser. Keywords: MSVC appears to misparse the constructor syntax for Debug::CurrentDebug. --- src/debug.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; -- 2.47.3