ObjFW  Check-in [5f4d70c69f]

Overview
Comment:objc_destructInstance: Remove associated objects
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 5f4d70c69f240968aec38b5accdb6e24bc2394fbed0af578294ffb2ae5737988
User & Date: js on 2024-02-03 15:50:48
Other Links: manifest | tags
Context
2024-02-04
16:48
Increase ObjFWRT library version check-in: 2d61beb237 user: js tags: trunk
2024-02-03
15:50
objc_destructInstance: Remove associated objects check-in: 5f4d70c69f user: js tags: trunk
14:41
runtime: Add support for associated objects check-in: 18ae339de1 user: js tags: trunk
Changes

Modified src/runtime/instance.m from [356d4e5ea1] to [6c5de971d5].

97
98
99
100
101
102
103


104
105
106
			    destructSelector)) != last)
				destruct(object, destructSelector);

			last = destruct;
		} else
			break;
	}



	return object;
}







>
>



97
98
99
100
101
102
103
104
105
106
107
108
			    destructSelector)) != last)
				destruct(object, destructSelector);

			last = destruct;
		} else
			break;
	}

	objc_removeAssociatedObjects(object);

	return object;
}