From: Jay Freeman (saurik) Date: Fri, 20 Nov 2009 17:23:52 +0000 (+0000) Subject: Accidentally let CYProtocol leak on non-Objective-C systems. X-Git-Tag: v0.9.432~139 X-Git-Url: https://git.saurik.com/cycript.git/commitdiff_plain/cee5e1fd5183c06f351c849d6c245b9a8a57e1d7 Accidentally let CYProtocol leak on non-Objective-C systems. --- diff --git a/Cycript.y.in b/Cycript.y.in index ae39422..3b7d21f 100644 --- a/Cycript.y.in +++ b/Cycript.y.in @@ -88,7 +88,6 @@ typedef struct { CYProgram *program_; CYProperty *property_; CYPropertyName *propertyName_; - CYProtocol *protocol_; CYStatement *statement_; CYString *string_; CYThis *this_; @@ -100,6 +99,7 @@ typedef struct { CYField *field_; CYMessage *message_; CYMessageParameter *messageParameter_; + CYProtocol *protocol_; CYSelectorPart *selector_; @end