diff libinterp/octave-value/ov-class.h @ 23587:0c468af9dc00

maint: Deprecate is_object and replace with isobject. * ov.h (is_object): Use OCTAVE_DEPRECATED macro around function. * ov.h (isobject): New function. * bsxfun.cc, cellfun.cc, data.cc, ls-mat5.cc, oct-stream.cc, symtab.h, variables.cc, ov-base.h, ov-class.cc, ov-class.h, ov-classdef.h, ov-oncleanup.h, ov-struct.cc, ov.cc, ov.h, op-class.cc, pt-arg-list.cc, pt-eval.cc, pt-tm-const.cc: Replace instances of is_object with isobject.
author Rik <rik@octave.org>
date Tue, 13 Jun 2017 11:25:31 -0700
parents 7ed6b258db91
children 194eb4bd202b
line wrap: on
line diff
--- a/libinterp/octave-value/ov-class.h	Tue Jun 13 10:20:55 2017 -0700
+++ b/libinterp/octave-value/ov-class.h	Tue Jun 13 11:25:31 2017 -0700
@@ -144,7 +144,7 @@
 
   bool isstruct (void) const { return false; }
 
-  bool is_object (void) const { return true; }
+  bool isobject (void) const { return true; }
 
   bool is_true (void) const;