X-Git-Url: https://git.saurik.com/cycript.git/blobdiff_plain/56e02e5b879e679302c8d9a20654b8a193791a3a..afdeb40444392e6b538d1bb46454e017724e6775:/ObjectiveC/Syntax.hpp diff --git a/ObjectiveC/Syntax.hpp b/ObjectiveC/Syntax.hpp index 96e4604..effaa24 100644 --- a/ObjectiveC/Syntax.hpp +++ b/ObjectiveC/Syntax.hpp @@ -38,9 +38,9 @@ struct CYTypeModifier : struct CYTypeArrayOf : CYTypeModifier { - size_t size_; + CYExpression *size_; - CYTypeArrayOf(size_t size, CYTypeModifier *next = NULL) : + CYTypeArrayOf(CYExpression *size, CYTypeModifier *next = NULL) : CYTypeModifier(next), size_(size) {