mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-23 09:04:13 +00:00
fix include order error
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@32203 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
2f6264e1cb
commit
f955681fa6
1 changed files with 6 additions and 5 deletions
|
@ -10,11 +10,6 @@ Test whether a class is a working concrete subclass of NSString. This file
|
|||
should be included _once_ in a test that wants to test a particular class.
|
||||
*/
|
||||
|
||||
/*
|
||||
This is the main entry point to this file. Call it with a class that's
|
||||
supposed to be a concrete NSString subclass.
|
||||
*/
|
||||
void TestNSStringClass(Class stringClass);
|
||||
|
||||
|
||||
#import "Testing.h"
|
||||
|
@ -23,6 +18,12 @@ void TestNSStringClass(Class stringClass);
|
|||
#import <Foundation/NSException.h>
|
||||
#import <Foundation/NSString.h>
|
||||
|
||||
/*
|
||||
This is the main entry point to this file. Call it with a class that's
|
||||
supposed to be a concrete NSString subclass.
|
||||
*/
|
||||
void TestNSStringClass(Class stringClass);
|
||||
|
||||
/* Solaris, in particular, can't handle a NULL string in a printf statement */
|
||||
#define FORMAT_STRING(str) ((str) ? str : "NULL")
|
||||
|
||||
|
|
Loading…
Reference in a new issue