diff libinterp/octave-value/ov-base.h @ 23580:2230f9e10fb3

maint: Deprecate is_integer_type and replace with isinteger. * ov.h (is_integer_type): Use OCTAVE_DEPRECATED macro around function. * ov.h (isinteger): New function. * cellfun.cc, data.cc, find.cc, graphics.cc, oct-stream.cc, typecast.cc, audioread.cc, qr.cc, ov-base.h, ov-class.cc, ov-intx.h, ov.cc: Replace instances of is_integer_type with isinteger.
author Rik <rik@octave.org>
date Mon, 12 Jun 2017 17:53:28 -0700
parents c20a0fa91c0c
children c3075ae020e1
line wrap: on
line diff
--- a/libinterp/octave-value/ov-base.h	Mon Jun 12 17:24:08 2017 -0700
+++ b/libinterp/octave-value/ov-base.h	Mon Jun 12 17:53:28 2017 -0700
@@ -411,7 +411,7 @@
 
   virtual bool islogical (void) const { return false; }
 
-  virtual bool is_integer_type (void) const { return false; }
+  virtual bool isinteger (void) const { return false; }
 
   virtual bool is_real_type (void) const { return false; }