view src/of-quaternion-2-dev-fixes.patch @ 6519:77267b0c5bc8 release

octave: Update version numbers after merge in Octave repository. * src/default-octave.mk: Update version number to 9.0.0. * src/stable-octave.mk: Update version number to 8.0.1. Merge changes in build rule from default-octave.mk.
author Markus Mützel <markus.muetzel@gmx.de>
date Wed, 16 Nov 2022 08:25:43 +0100
parents 48b9473dd2ad
children
line wrap: on
line source

diff -ur quaternion.orig/src/is_real_array.cc quaternion/src/is_real_array.cc
--- quaternion.orig/src/is_real_array.cc	2019-01-02 13:53:40.766144030 -0500
+++ quaternion/src/is_real_array.cc	2019-01-02 13:54:35.459444478 -0500
@@ -46,8 +46,8 @@
         {
             // args(i).ndims () should be always >= 2
             if (args(i).ndims () < 2
-                || ! ((args(i).is_numeric_type () && args(i).is_real_type ())
-                      || args(i).is_bool_type ()))
+                || ! ((args(i).isnumeric () && args(i).isreal ())
+                      || args(i).islogical ()))
             {
                 retval = false;
                 break;