]> git.saurik.com Git - cycript.git/blobdiff - sig/parse.cpp
libnativehelper.so was there before JniInvocation.
[cycript.git] / sig / parse.cpp
index 52a974d90d17ce6266e22d63f505cb5fd73f4db1..b2931ef3723d6dcfed3db48e0c2cae76f1696801 100644 (file)
@@ -381,6 +381,10 @@ const char *Object::Encode(CYPool &pool) const {
 }
 #endif
 
+const char *Enum::Encode(CYPool &pool) const {
+    return type.Encode(pool);
+}
+
 const char *Aggregate::Encode(CYPool &pool) const {
     return pool.strcat(overlap ? "(" : "{", name == NULL ? "?" : name, "=", Unparse(pool, &signature), overlap ? ")" : "}", NULL);
 }