Index: src/tests/except-mac.h
===================================================================
--- src/tests/except-mac.h	(revision 389528b064cb7e3dd189f2b539211687b2f09352)
+++ src/tests/except-mac.h	(revision efe8172bfd75cfa47653869172b1fc947a222497)
@@ -30,5 +30,5 @@
 	size_t size; \
 	void (*copy)(except_name *this, except_name * other); \
-	void (*free)(except_name *this); \
+	void (*free)(except_name &this); \
 	const char * (*msg)(except_name *this); \
 	__VA_ARGS__ \
@@ -42,5 +42,5 @@
 // In each constructor the vtable must be initialized.
 #define VTABLE_INIT(this_name,except_name) \
-this_name->virtual_table = &INSTANCE(except_name)
+this_name.virtual_table = &INSTANCE(except_name)
 
 // Declare the vtable instance. This should end an exception declaration.
@@ -73,5 +73,5 @@
     this->virtual_table = other->virtual_table; \
 } \
-void ?{}(name * this) { \
+void ?{}(name & this) { \
 	VTABLE_INIT(this,name); \
 } \
