X-Git-Url: https://git.saurik.com/cycript.git/blobdiff_plain/0cbeddf886b3e6d732c96a8f6a578a755e7ddf66..30c4d7e00d46650bb72db651b45fa5a7c0b9ca3c:/sig/parse.cpp diff --git a/sig/parse.cpp b/sig/parse.cpp index 1bbd7a4..436e3cd 100644 --- a/sig/parse.cpp +++ b/sig/parse.cpp @@ -172,6 +172,12 @@ Type *Parse_(CYPool &pool, const char **name, char eos, bool named, Callback cal case 's': type->primitive = short_P; break; case 'v': type->primitive = void_P; break; +#ifdef __LP64__ + case 'F': type->primitive = double_P; break; +#else + case 'F': type->primitive = float_P; break; +#endif + case '{': type->primitive = struct_P; next = '}';