]> git.saurik.com Git - cycript.git/blobdiff - Handler.mm
Optimized the variable renamer to rename more variables to 'a'.
[cycript.git] / Handler.mm
index 38ef638182fe2d37dbd0733a0159d29b4ecf2765..4e4ccfeb2e4011960c6a1d625956f751ac34cf97 100644 (file)
@@ -130,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()};