]> git.saurik.com Git - cycript.git/blobdiff - Handler.mm
Ported Objective-C bridge to match up with the latest compiler changes.
[cycript.git] / Handler.mm
index 40b79f8ec20801e056ee6efd5dab7188d016ff6c..9c1a8dfb78c848ec4f165129fcd126671cd9900d 100644 (file)
@@ -131,10 +131,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()};