From 3ee426316e6fe5efb61e52d8d331f86059dccd1c Mon Sep 17 00:00:00 2001 From: rfm Date: Fri, 18 Feb 2011 11:48:28 +0000 Subject: [PATCH] fix include order error git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@32203 72102866-910b-0410-8b05-ffd578937521 --- Tests/base/NSString/NSString_tests.h | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/Tests/base/NSString/NSString_tests.h b/Tests/base/NSString/NSString_tests.h index a038a3897..83f6f7f7c 100644 --- a/Tests/base/NSString/NSString_tests.h +++ b/Tests/base/NSString/NSString_tests.h @@ -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 #import +/* +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")