aboutsummaryrefslogtreecommitdiffstats
path: root/Alc/polymorphism.h
diff options
context:
space:
mode:
Diffstat (limited to 'Alc/polymorphism.h')
-rw-r--r--Alc/polymorphism.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/Alc/polymorphism.h b/Alc/polymorphism.h
index b41ad64b..fa31fad2 100644
--- a/Alc/polymorphism.h
+++ b/Alc/polymorphism.h
@@ -102,7 +102,4 @@ static void T##_Delete(void *ptr) { al_free(ptr); }
/* Helper to set an object's vtable thunk for a child type. Used when constructing an object. */
#define SET_VTABLE2(T1, T2, obj) (STATIC_CAST(T2, obj)->vtbl = GET_VTABLE2(T1, T2))
-/* Helper to set an object's vtable for a type. */
-#define SET_VTABLE1(T1, obj) ((obj)->vtbl = &(T1##_vtable))
-
#endif /* POLYMORPHISM_H */