Fix BSONCodec.m includes

include objc.h instead of runtime.h so that it works on older gcc objc runtime
pull/10/head
Jean Raby 2013-03-06 11:03:19 -05:00
parent e882dedac9
commit c79af52b67
1 changed files with 1 additions and 1 deletions

View File

@ -9,7 +9,7 @@
#import "BSONCodec.h"
#import <ctype.h>
#import <string.h>
#import <objc/runtime.h>
#import <objc/objc.h>
#define BSONTYPE(tag,className) [className class], [NSNumber numberWithChar: (tag)]