Mercurial > hg > octave-nkf
comparison 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 |
comparison
equal
deleted
inserted
replaced
19116:cc8aaf9c9e33 | 19117:09eb8a2ddb02 |
---|---|
298 void | 298 void |
299 recover_from_parsing_function (void); | 299 recover_from_parsing_function (void); |
300 | 300 |
301 tree_funcall * | 301 tree_funcall * |
302 make_superclass_ref (const std::string& method_nm, | 302 make_superclass_ref (const std::string& method_nm, |
303 const std::string& class_nm, | 303 const std::string& class_nm); |
304 int l, int c); | |
305 | 304 |
306 tree_funcall * | 305 tree_funcall * |
307 make_meta_class_query (const std::string& class_nm, | 306 make_meta_class_query (const std::string& class_nm); |
308 int l, int c); | |
309 | 307 |
310 tree_classdef * | 308 tree_classdef * |
311 make_classdef (token *tok_val, tree_classdef_attribute_list *a, | 309 make_classdef (token *tok_val, tree_classdef_attribute_list *a, |
312 tree_identifier *id, tree_classdef_superclass_list *sc, | 310 tree_identifier *id, tree_classdef_superclass_list *sc, |
313 tree_classdef_body *body, token *end_tok, | 311 tree_classdef_body *body, token *end_tok, |