diff libinterp/parse-tree/parse.h @ 18927: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
line wrap: on
line diff
--- a/libinterp/parse-tree/parse.h	Wed Jul 16 18:38:55 2014 -0400
+++ b/libinterp/parse-tree/parse.h	Wed Jul 16 19:55:30 2014 -0400
@@ -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,