comparison libinterp/parse-tree/pt-array-list.cc @ 16299:c40a8873c2e7

eliminate some unused variables * lex.ll (\], \}, \", "'"): Eliminate unused variables. * pt-array-list.cc (tree_array_list::dup): Omit unused argument names from function definition.
author John W. Eaton <jwe@octave.org>
date Wed, 13 Mar 2013 15:40:03 -0400
parents 70f465930546
children 4197fc428c7d
comparison
equal deleted inserted replaced
16298:faaf60aa457c 16299:c40a8873c2e7
91 91
92 copy_base (*this); 92 copy_base (*this);
93 } 93 }
94 94
95 tree_expression * 95 tree_expression *
96 tree_array_list::dup (symbol_table::scope_id scope, 96 tree_array_list::dup (symbol_table::scope_id,
97 symbol_table::context_id context) const 97 symbol_table::context_id) const
98 { 98 {
99 panic_impossible (); 99 panic_impossible ();
100 return 0; 100 return 0;
101 } 101 }
102 102