Mercurial > hg > octave-nkf
diff libinterp/parse-tree/parse.h @ 19117:09eb8a2ddb02
eliminate some unused parameter warnings in parser functions
* parse.in.yy, parse.h (octave_base_parser::make_superclass_ref,
octave_base_parser::make_meta_class_query): Eliminate unused line and
column number parameters.
author | John W. Eaton <jwe@octave.org> |
---|---|
date | Wed, 16 Jul 2014 19:55:30 -0400 |
parents | 932aca9a7c57 |
children | 4197fc428c7d |
line wrap: on
line diff
--- a/libinterp/parse-tree/parse.h +++ b/libinterp/parse-tree/parse.h @@ -300,12 +300,10 @@ tree_funcall * make_superclass_ref (const std::string& method_nm, - const std::string& class_nm, - int l, int c); + const std::string& class_nm); tree_funcall * - make_meta_class_query (const std::string& class_nm, - int l, int c); + make_meta_class_query (const std::string& class_nm); tree_classdef * make_classdef (token *tok_val, tree_classdef_attribute_list *a,