comparison src/pt-cmd.cc @ 7924:4976f66d469b

miscellaneous cleanup
author John W. Eaton <jwe@octave.org>
date Fri, 11 Jul 2008 17:59:28 -0400
parents 71f068b22fcc
children 73c4516fae10
comparison
equal deleted inserted replaced
7923:c3d21b9b94b6 7924:4976f66d469b
30 30
31 // No-op. 31 // No-op.
32 32
33 tree_command * 33 tree_command *
34 tree_no_op_command::dup (symbol_table::scope_id, 34 tree_no_op_command::dup (symbol_table::scope_id,
35 symbol_table::context_id context) 35 symbol_table::context_id /*context*/)
36 { 36 {
37 return new tree_no_op_command (orig_cmd, line (), column ()); 37 return new tree_no_op_command (orig_cmd, line (), column ());
38 } 38 }
39 39
40 void 40 void
63 } 63 }
64 } 64 }
65 65
66 tree_command * 66 tree_command *
67 tree_function_def::dup (symbol_table::scope_id, 67 tree_function_def::dup (symbol_table::scope_id,
68 symbol_table::context_id context) 68 symbol_table::context_id /*context*/)
69 { 69 {
70 return new tree_function_def (fcn, line (), column ()); 70 return new tree_function_def (fcn, line (), column ());
71 } 71 }
72 72
73 void 73 void