From 0317b6179550d2b0ec0a2cbeb64d0c15b50e8189 Mon Sep 17 00:00:00 2001 From: mccallum Date: Mon, 3 Apr 1995 01:32:11 +0000 Subject: [PATCH] Fix #include's. Fix @"" strings. git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@227 72102866-910b-0410-8b05-ffd578937521 --- Source/NSException.m | 23 ++++++----------------- 1 file changed, 6 insertions(+), 17 deletions(-) diff --git a/Source/NSException.m b/Source/NSException.m index 3d8ba509b..c5019e9dd 100644 --- a/Source/NSException.m +++ b/Source/NSException.m @@ -21,17 +21,13 @@ Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ #include -#include "NSException.h" -#include "NSObjectPrivate.h" -#include "NSString.h" -#include "NSValue.h" -#include "NSArray.h" -#include "NSCoder.h" -#include "NSDictionary.h" -#include "object_zone.h" +#include +#include +#include +#include +#include +#include -// FIXME: GNU gcc doesn't have static strings yet... -/* NSString *NSInconsistentArchiveException = @"NSInconsistentArchiveException"; NSString *NSGenericException @@ -41,13 +37,6 @@ NSString *NSInternalInconsistencyException NSString *NSInvalidArgumentException = @"NSInvalidArgumentException"; NSString *NSMallocException = @"NSMallocException"; NSString *NSRangeException = @"NSRangeException"; -*/ -NSString *NSInconsistentArchiveException; -NSString *NSGenericException; -NSString *NSInternalInconsistencyException; -NSString *NSInvalidArgumentException; -NSString *NSMallocException; -NSString *NSRangeException; /* FIXME: Not thread safe - probably need one for each thread. */ static NSMutableArray *e_queue;