mirror of
https://github.com/gnustep/libs-gdl2.git
synced 2025-02-14 15:41:28 +00:00
include <objc/runtime.h> instead of include <objc/objc-class.h>
This commit is contained in:
parent
3afa513b5c
commit
d5f0d94b4b
3 changed files with 10 additions and 2 deletions
|
@ -1,3 +1,7 @@
|
|||
2015-12-24 David Wetzel <dave@turbocat.de>
|
||||
* EOControl/EOFaultHandler.m
|
||||
* EOControl/EOGenericRecord.m
|
||||
#include <objc/runtime.h> instead of #include <objc/objc-class.h>
|
||||
2014-07-24 Manuel Guesdon <mguesdon@orange-concept.com>
|
||||
* EOAccess/EODatabase.[hm]
|
||||
add -forgetSnapshotForSourceGlobalID:relationshipName:
|
||||
|
|
|
@ -53,7 +53,9 @@
|
|||
#include <EOControl/EODebug.h>
|
||||
|
||||
#ifndef GNU_RUNTIME
|
||||
#include <objc/objc-class.h>
|
||||
// this no longer works with llvm
|
||||
//#include <objc/objc-class.h>
|
||||
#include <objc/runtime.h>
|
||||
#endif
|
||||
|
||||
#include <objc/Protocol.h>
|
||||
|
|
|
@ -68,7 +68,9 @@
|
|||
#include <EOControl/EOKeyValueCoding.h>
|
||||
|
||||
#ifndef GNU_RUNTIME
|
||||
#include <objc/objc-class.h>
|
||||
// this no longer works with llvm
|
||||
//#include <objc/objc-class.h>
|
||||
#include <objc/runtime.h>
|
||||
#endif
|
||||
|
||||
#include <limits.h>
|
||||
|
|
Loading…
Reference in a new issue