diff --git a/ChangeLog b/ChangeLog index f020cdbc8..ecc13dd81 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2010-08-25 Jonathan Gillaspie + + * Source/Objective2/sync.m: Removed weak declarations + 2010-08-24 Wolfgang Lux * Source/GSFileHandle.m (-initWithStandardError, diff --git a/Source/ObjectiveC2/sync.m b/Source/ObjectiveC2/sync.m index cce854370..697a975ea 100644 --- a/Source/ObjectiveC2/sync.m +++ b/Source/ObjectiveC2/sync.m @@ -161,7 +161,6 @@ sync_add_node(id obj) * Add a lock for the object. */ int -__attribute__((weak)) objc_sync_enter(id obj) { lock_node_t *node = NULL; @@ -203,7 +202,6 @@ objc_sync_enter(id obj) * Remove a lock for the object. */ int -__attribute__((weak)) objc_sync_exit(id obj) { lock_node_t *node = NULL;