diff libinterp/octave-value/ov-struct.h @ 23584:7ed6b258db91

maint: Deprecate is_map and replace with isstruct. * ov.h (is_map): Use OCTAVE_DEPRECATED macro around function. * ov.h (isstruct): New function. * structdemo.cc, __luinc__.cc, __magick_read__.cc, cellfun.cc, data.cc, debug.cc, error.cc, graphics.cc, load-save.cc, ls-mat5.cc, mex.cc, oct-lvalue.h, oct-stream.cc, variables.cc, __eigs__.cc, __ode15__.cc, ov-base.h, ov-class.cc, ov-class.h, ov-classdef.h, ov-java.h, ov-struct.cc, ov-struct.h, ov-usr-fcn.cc, ov.h, pt-eval.cc, pt-tm-const.cc: Replace instances of is_map with isstruct.
author Rik <rik@octave.org>
date Tue, 13 Jun 2017 09:20:08 -0700
parents cd4e1ee28716
children dcba41788495
line wrap: on
line diff
--- a/libinterp/octave-value/ov-struct.h	Tue Jun 13 08:24:42 2017 -0700
+++ b/libinterp/octave-value/ov-struct.h	Tue Jun 13 09:20:08 2017 -0700
@@ -117,7 +117,7 @@
 
   bool is_constant (void) const { return true; }
 
-  bool is_map (void) const { return true; }
+  bool isstruct (void) const { return true; }
 
   builtin_type_t builtin_type (void) const { return btyp_struct; }
 
@@ -233,7 +233,7 @@
 
   bool is_constant (void) const { return true; }
 
-  bool is_map (void) const { return true; }
+  bool isstruct (void) const { return true; }
 
   builtin_type_t builtin_type (void) const { return btyp_struct; }