X-Git-Url: https://git.saurik.com/cycript.git/blobdiff_plain/029bc65b46de676c6733fff684000c7363eda512..fe123f47092fe716bf5111ca57b2670932c10d6d:/Handler.mm diff --git a/Handler.mm b/Handler.mm index 40b79f8..4e4ccfe 100644 --- a/Handler.mm +++ b/Handler.mm @@ -42,7 +42,6 @@ #include "Pooling.hpp" #include "Parser.hpp" -#include "Context.hpp" #include "Cycript.tab.hh" @@ -131,10 +130,11 @@ struct CYClient : } else { NSAutoreleasePool *ar = [[NSAutoreleasePool alloc] init]; - CYContext context(driver.pool_); + CYOptions options; + CYContext context(driver.pool_, options); driver.program_->Replace(context); std::ostringstream str; - CYOutput out(str); + CYOutput out(str, options); out << *driver.program_; std::string code(str.str()); CYExecute_ execute = {pool, code.c_str()};