Revert "Export objc_enumerationMutation."

This is now correctly exported in the libobjc2 runtime.

This reverts commit c52f1e3223.
This commit is contained in:
Frederik Seiffert 2021-03-26 21:03:48 +01:00
parent 825b43be7e
commit fb84b3b1e8

View file

@ -1,15 +1,14 @@
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wattributes"
GS_EXPORT void objc_enumerationMutation(id);
#pragma GCC diagnostic pop
#ifdef __clang__
#define FOR_IN(type, var, collection) \
for (type var in collection)\
{
#define END_FOR_IN(collection) }
#else
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wattributes"
void objc_enumerationMutation(id);
#pragma GCC diagnostic pop
#define FOR_IN(type, var, c) \
do\
{\