comparison src/pt-assign.cc @ 6483:d00da2148c53

[project @ 2007-04-04 02:58:48 by jwe]
author jwe
date Wed, 04 Apr 2007 02:58:48 +0000
parents f1676652d808
children 93c65f2a5668
comparison
equal deleted inserted replaced
6482:7e958a1532c6 6483:d00da2148c53
304 bool plhs, int l, int c, octave_value::assign_op t) 304 bool plhs, int l, int c, octave_value::assign_op t)
305 : tree_expression (l, c), lhs (lst), rhs (r), preserve (plhs), etype (t) 305 : tree_expression (l, c), lhs (lst), rhs (r), preserve (plhs), etype (t)
306 { 306 {
307 for (tree_argument_list::iterator p = lhs->begin (); p != lhs->end (); p++) 307 for (tree_argument_list::iterator p = lhs->begin (); p != lhs->end (); p++)
308 { 308 {
309 tree_expression *lhs = *p; 309 tree_expression *lhs_expr = *p;
310 310
311 if (lhs) 311 if (lhs_expr)
312 maybe_warn_former_built_in_variable (lhs->name ()); 312 maybe_warn_former_built_in_variable (lhs_expr->name ());
313 } 313 }
314 } 314 }
315 315
316 tree_multi_assignment::~tree_multi_assignment (void) 316 tree_multi_assignment::~tree_multi_assignment (void)
317 { 317 {