fix includes/imports

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/performance/trunk@32439 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Richard Frith-MacDonald 2011-03-03 10:51:46 +00:00
parent 790ee4cc55
commit 75fb416fc7
3 changed files with 10 additions and 8 deletions

View file

@ -811,7 +811,7 @@ static void removeItem(GSCacheItem *item, GSCacheItem **first)
#if defined(GNUSTEP_BASE_LIBRARY)
#include <GNUstepBase/GSMime.h>
#import <GNUstepBase/GSMime.h>
@implementation GSMimeDocument (GSCacheSizeInBytes)
- (unsigned) sizeInBytes: (NSMutableSet*)exclude

View file

@ -26,7 +26,7 @@
#include <errno.h>
#include <stdio.h>
#include <string.h>
#include "GSIndexedSkipList.h"
#import "GSIndexedSkipList.h"
/* This no longer seems to be needed/correct
#if defined(__MINGW32__)

View file

@ -1,9 +1,11 @@
#include "GSLinkedList.h"
#include "GSThreadPool.h"
#include <Foundation/NSAutoreleasePool.h>
#include <Foundation/NSLock.h>
#include <Foundation/NSThread.h>
#include <Foundation/NSException.h>
#import "GSLinkedList.h"
#import "GSThreadPool.h"
#import <Foundation/NSAutoreleasePool.h>
#import <Foundation/NSDate.h>
#import <Foundation/NSLock.h>
#import <Foundation/NSThread.h>
#import <Foundation/NSString.h>
#import <Foundation/NSException.h>
@class GSThreadPool;