Skip to content
Snippets Groups Projects
Commit 2f33ff40 authored by Konstantin Osipov's avatar Konstantin Osipov
Browse files

A go at fixing homebrew build on Mac OS X 10.8

objc/Object.h is gone in clang 3.2.

Use an own root class for all Tarantool objects.
parent 0ccedb3f
No related branches found
No related tags found
No related merge requests found
......@@ -28,10 +28,11 @@
* THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*/
#include <objc/Object.h>
#include <objc/runtime.h>
@interface tnt_Object: Object
@interface tnt_Object {
Class isa;
}
+ (id) alloc;
- (id) init;
- (void) free;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment