this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

darling-stub-gen fixes

+2 -1
+2 -1
tools/darling-stub-gen
··· 145 145 c_source.write(""" 146 146 #include <%s/%s.h> 147 147 #include <stdlib.h> 148 + #include <stdio.h> 148 149 149 150 static int verbose = 0; 150 151 ··· 202 203 protocols_regex = re.compile("(@protocol (.+?)[\n ].+?@end)", re.DOTALL | re.MULTILINE) 203 204 classes_regex = re.compile("(@interface (.+?) :.+?@end)", re.DOTALL | re.MULTILINE) 204 205 205 - blacklisted_protocols = ["NSObject", "NSSecureCoding", "NSCoding", "NSCopying"] 206 + blacklisted_protocols = ["NSObject", "NSSecureCoding", "NSCoding", "NSCopying", "NSFastEnumeration"] 206 207 for protocol_def in protocols_regex.finditer(class_dump_output): 207 208 protocol_contents, protocol_name = protocol_def.groups() 208 209 if protocol_name in blacklisted_protocols: