mirror of
https://github.com/gnustep/libs-performance.git
synced 2025-02-15 16:11:14 +00:00
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:
parent
790ee4cc55
commit
75fb416fc7
3 changed files with 10 additions and 8 deletions
|
@ -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
|
||||
|
|
|
@ -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__)
|
||||
|
|
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in a new issue