Browse Source

Make sure folks without instancetype can still use FMDB

August Mueller 12 years ago
parent
commit
977efe9a0d
1 changed files with 3 additions and 0 deletions
  1. 3 0
      src/FMDatabase.h

+ 3 - 0
src/FMDatabase.h

@@ -45,6 +45,9 @@
 	#endif
 #endif
 
+#if !__has_feature(objc_instancetype)
+    #define instancetype id
+#endif
 
 /** A SQLite ([http://sqlite.org/](http://sqlite.org/)) Objective-C wrapper.