comparison libinterp/parse-tree/pt-jit.cc @ 24233:ec837ef7ee3b

pt-jit.cc: Fix syntax error introduced by cset 5cb3a2bb5e1e * libinterp/parse-tree/pt-jit.cc: Fix syntax error introduced by cset 5cb3a2bb5e1e
author Julien Bect <jbect@users.sourceforge.net>
date Tue, 17 Oct 2017 21:35:23 +0200
parents 980f39c3ab90
children 8d8e4d8e6fdc
comparison
equal deleted inserted replaced
24232:e0bcd17ac070 24233:ec837ef7ee3b
2410 { 2410 {
2411 const std::string& name = arguments[i].first; 2411 const std::string& name = arguments[i].first;
2412 2412
2413 // do not store for loop bounds temporary 2413 // do not store for loop bounds temporary
2414 if (name.size () && name[0] != '#') 2414 if (name.size () && name[0] != '#')
2415 symtab::assign (arguments[i].first, real_arguments[i]); 2415 symtab.assign (arguments[i].first, real_arguments[i]);
2416 } 2416 }
2417 2417
2418 octave_quit (); 2418 octave_quit ();
2419 2419
2420 return true; 2420 return true;