X-Git-Url: https://git.saurik.com/cycript.git/blobdiff_plain/61769f4feca6b79c44accca7f8bd9b74bf6a5ce9..fc44232bcff15a35c016ddfc1dc34b6503125020:/ObjectiveC/Syntax.hpp diff --git a/ObjectiveC/Syntax.hpp b/ObjectiveC/Syntax.hpp index 4c15344..e04f71d 100644 --- a/ObjectiveC/Syntax.hpp +++ b/ObjectiveC/Syntax.hpp @@ -113,13 +113,11 @@ struct CYSelector : struct CYField : CYNext { - CYExpression *type_; - CYIdentifier *name_; + CYTypedIdentifier *typed_; - CYField(CYExpression *type, CYIdentifier *name, CYField *next = NULL) : + CYField(CYTypedIdentifier *typed, CYField *next = NULL) : CYNext(next), - type_(type), - name_(name) + typed_(typed) { }