octave-bug-tracker
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Octave-bug-tracker] [bug #46521] [octave forge] (communications) fails


From: John Donoghue
Subject: [Octave-bug-tracker] [bug #46521] [octave forge] (communications) fails to build with latest stable octave
Date: Sun, 22 Dec 2019 08:54:40 -0500 (EST)
User-agent: Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:71.0) Gecko/20100101 Firefox/71.0

Follow-up Comment #48, bug #46521 (project octave):

It would be nice to get rid of all the error_state warnings as well :) 

But for the isnumeric, isreal:

diff -r a49be0b5345f src/configure.ac
--- a/src/configure.ac  Sun Dec 22 08:46:53 2019 -0500
+++ b/src/configure.ac  Sun Dec 22 08:53:28 2019 -0500
@@ -105,6 +105,15 @@
 ],
 
 [dnl
+  [is_numeric_type],
+  [isnumeric],
+  [[octave_value ().isnumeric ();]],
+  [OV_ISNUMERIC],
+  [],
+  []
+],
+
+[dnl
   [is_empty],
   [isempty],
   [[octave_value ().isempty ();]],



diff -r a49be0b5345f src/ov-galois.h
--- a/src/ov-galois.h   Sun Dec 22 08:46:53 2019 -0500
+++ b/src/ov-galois.h   Sun Dec 22 08:53:28 2019 -0500
@@ -103,7 +103,7 @@
 
   bool is_defined (void) const { return true; }
 
-  bool is_numeric_type (void) const { return true; }
+  bool OV_ISNUMERIC (void) const { return true; }
 
   bool is_constant (void) const { return true; }
 
@@ -127,7 +127,7 @@
 
   bool is_real_matrix (void) const { return false; }
 
-  bool is_real_type (void) const { return false; }
+  bool OV_ISREAL (void) const { return false; }


    _______________________________________________________

Reply to this item at:

  <https://savannah.gnu.org/bugs/?46521>

_______________________________________________
  Message sent via Savannah
  https://savannah.gnu.org/




reply via email to

[Prev in Thread] Current Thread [Next in Thread]