diff libinterp/octave-value/ov-base.h @ 23575:e95738a119da

maint: Deprecate is_cellstr and replace with iscellstr. * ov.h (is_cellstr): Use OCTAVE_DEPRECATED macro for is_cellstr. * ov.h (iscellstr): New function. * Cell.cc, Cell.h, data.cc, graphics.cc, graphics.in.h, lookup.cc, strfns.cc, sysdep.cc, __delaunayn__.cc, __voronoi__.cc, convhulln.cc, ov-base.h, ov-cell.cc, ov-cell.h, ov-java.cc, ov-struct.cc: Replace occurrences of is_cellstr with iscellstr.
author Rik <rik@octave.org>
date Sun, 11 Jun 2017 15:26:14 -0700
parents c6714ae1c06c
children 00e518162fda
line wrap: on
line diff
--- a/libinterp/octave-value/ov-base.h	Fri Jun 09 15:32:33 2017 -0400
+++ b/libinterp/octave-value/ov-base.h	Sun Jun 11 15:26:14 2017 -0700
@@ -341,7 +341,7 @@
 
   virtual bool is_cell (void) const { return false; }
 
-  virtual bool is_cellstr (void) const { return false; }
+  virtual bool iscellstr (void) const { return false; }
 
   virtual bool is_real_scalar (void) const { return false; }