ObjFW  Diff

Differences From Artifact [ce104d5d58]:

To Artifact [0f2a144c82]:


80
81
82
83
84
85
86







87
{
	of_plugin_handle_t h = handle;

	[super dealloc];

	dlclose(h);
}







@end







>
>
>
>
>
>
>

80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
	of_plugin_handle_t h = handle;

	[super dealloc];

	dlclose(h);
}

- (void)finalize
{
	dlclose(handle);

	[super finalize];
}
@end