diff libinterp/octave-value/ov-base.h @ 23589:63950abd2f81

maint: Deprecate is_null_type and replace with isnull. * ov.h (is_null_type): Use OCTAVE_DEPRECATED macro around function. * ov.h (isnull): New function. * ov-base.h, ov-cell.cc, ov-null-mat.cc, ov-null-mat.h, ov-struct.cc, ov.cc: Replace instances of is_null_type with isnull.
author Rik <rik@octave.org>
date Tue, 13 Jun 2017 13:05:19 -0700
parents 0549061d35b9
children be7b884ac589
line wrap: on
line diff
--- a/libinterp/octave-value/ov-base.h	Tue Jun 13 12:43:42 2017 -0700
+++ b/libinterp/octave-value/ov-base.h	Tue Jun 13 13:05:19 2017 -0700
@@ -429,7 +429,7 @@
 
   virtual bool is_true (void) const { return false; }
 
-  virtual bool is_null_value (void) const { return false; }
+  virtual bool isnull (void) const { return false; }
 
   virtual bool is_constant (void) const { return false; }