view src/of-quaternion-2-dev-fixes.patch @ 6213:5f64fb928091 release

build-gcc: Avoid library clash when calling msgfmt. * src/build-gcc-1-msgfmt.patch: Don't use libraries from the build tree when calling `msgfmt`. * dist-files.mk: Add patch to list.
author Markus Mützel <markus.muetzel@gmx.de>
date Fri, 06 May 2022 19:36:10 +0200
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;