include <objc/runtime.h> instead of include <objc/objc-class.h>

This commit is contained in:
David Wetzel 2017-12-24 16:06:37 -05:00
parent 3afa513b5c
commit d5f0d94b4b
3 changed files with 10 additions and 2 deletions

View file

@ -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:

View file

@ -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>

View file

@ -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>