From a352936e89fa78728fa8d611ee9d9cb065fd272f Mon Sep 17 00:00:00 2001 From: Dave Beazley Date: Fri, 16 Jun 2000 15:38:35 +0000 Subject: [PATCH] *** empty log message *** git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@480 626c5289-ae23-0410-ae9c-e8d60b6d4f22 --- CHANGES | 15 +++++++++++++++ Source/Preprocessor/cpp.c | 2 +- 2 files changed, 16 insertions(+), 1 deletion(-) diff --git a/CHANGES b/CHANGES index 9aa9cd486..7f9cfbfea 100644 --- a/CHANGES +++ b/CHANGES @@ -1,5 +1,20 @@ SWIG (Simplified Wrapper and Interface Generator) +6/16/00 : beazley + Added -includeall to follow all #include statements in the + preprocessor. + +6/15/00 : beazley + Tried to fix as many C++ warnings as possible when compiling + with the Sun Workshop C++ compiler. Unfortunately, this means + that there are a lot of statements that contain string literals + of the form (char*)"Blah". + +6/15/00: beazley + A variety of cleanup and performance optimization in the + low-level DOH library. This seems to result in a speedup + of 50-100% for preprocessing and other related tasks. + 5/10/00 : ttn Applied variable-wrapping bugfix patch contributed by Matthias Koeppe. diff --git a/Source/Preprocessor/cpp.c b/Source/Preprocessor/cpp.c index 5a1524951..c2a835fe3 100644 --- a/Source/Preprocessor/cpp.c +++ b/Source/Preprocessor/cpp.c @@ -21,7 +21,7 @@ static char cvsroot[] = "$Header$"; #include static DOHHash *cpp = 0; /* C preprocessor data */ -static int include_all = 1; /* Follow all includes */ +static int include_all = 0; /* Follow all includes */ static int single_include = 1; /* Only include each file once */ static int silent_errors = 0; static DOHHash *included_files = 0;