mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-31 16:50:58 +00:00
Fix #include's.
Fix @"" strings. git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@227 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
e761309118
commit
0317b61795
1 changed files with 6 additions and 17 deletions
|
@ -21,17 +21,13 @@
|
||||||
Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||||
*/
|
*/
|
||||||
#include <assert.h>
|
#include <assert.h>
|
||||||
#include "NSException.h"
|
#include <foundation/NSException.h>
|
||||||
#include "NSObjectPrivate.h"
|
#include <foundation/NSString.h>
|
||||||
#include "NSString.h"
|
#include <foundation/NSValue.h>
|
||||||
#include "NSValue.h"
|
#include <foundation/NSArray.h>
|
||||||
#include "NSArray.h"
|
#include <foundation/NSCoder.h>
|
||||||
#include "NSCoder.h"
|
#include <foundation/NSDictionary.h>
|
||||||
#include "NSDictionary.h"
|
|
||||||
#include "object_zone.h"
|
|
||||||
|
|
||||||
// FIXME: GNU gcc doesn't have static strings yet...
|
|
||||||
/*
|
|
||||||
NSString *NSInconsistentArchiveException
|
NSString *NSInconsistentArchiveException
|
||||||
= @"NSInconsistentArchiveException";
|
= @"NSInconsistentArchiveException";
|
||||||
NSString *NSGenericException
|
NSString *NSGenericException
|
||||||
|
@ -41,13 +37,6 @@ NSString *NSInternalInconsistencyException
|
||||||
NSString *NSInvalidArgumentException = @"NSInvalidArgumentException";
|
NSString *NSInvalidArgumentException = @"NSInvalidArgumentException";
|
||||||
NSString *NSMallocException = @"NSMallocException";
|
NSString *NSMallocException = @"NSMallocException";
|
||||||
NSString *NSRangeException = @"NSRangeException";
|
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. */
|
/* FIXME: Not thread safe - probably need one for each thread. */
|
||||||
static NSMutableArray *e_queue;
|
static NSMutableArray *e_queue;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue