From 07a80662f3895e4522fe5fa8e40722d5273de453 Mon Sep 17 00:00:00 2001 From: Dave Beazley Date: Wed, 12 Jan 2000 04:42:40 +0000 Subject: [PATCH] Flipped include_all flag. git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@55 626c5289-ae23-0410-ae9c-e8d60b6d4f22 --- Source/Preprocessor/cpp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Preprocessor/cpp.c b/Source/Preprocessor/cpp.c index 8f050e820..9cf1a85a6 100644 --- a/Source/Preprocessor/cpp.c +++ b/Source/Preprocessor/cpp.c @@ -35,7 +35,7 @@ static char cvsroot[] = "$Header$"; * ----------------------------------------------------------------------------- */ static DOH *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 DOH *included_files = 0;