# HG changeset patch # User Lasse Schuirmann # Date 1393228277 -3600 # Mon Feb 24 08:51:17 2014 +0100 # Node ID d6237cd5090a362597bbd6143a546119640b75e5 # Parent 932aca9a7c57140511065ecc9afcd561c8a5109c pt-funcall.cc: removed unused identifier to avoid unnecessary warning. diff -r 932aca9a7c57 -r d6237cd5090a libinterp/parse-tree/pt-funcall.cc --- a/libinterp/parse-tree/pt-funcall.cc Sat Feb 22 19:56:17 2014 -0500 +++ b/libinterp/parse-tree/pt-funcall.cc Mon Feb 24 08:51:17 2014 +0100 @@ -65,9 +65,13 @@ } } +/** + * Creates a duplicate. + * + * Params inherited, but unused. + */ tree_funcall * -tree_funcall::dup (symbol_table::scope_id, - symbol_table::context_id context) const +tree_funcall::dup (symbol_table::scope_id, symbol_table::context_id) const { tree_funcall *new_fc = new tree_funcall (fcn, args, line (), column ());