mirror of
https://git.freebsd.org/ports.git
synced 2025-04-30 10:36:38 -04:00
- Bump portrevision of dependent ports. - Add patches to dependent ports math/octave-forge-* if I can figure them out. - Mark broken dependent ports I couldn't figure out.
13 lines
567 B
C++
13 lines
567 B
C++
--- is_real_array.cc.orig 2021-02-21 22:03:11 UTC
|
|
+++ is_real_array.cc
|
|
@@ -46,8 +46,8 @@ Avoid nasty stuff like @code{true = isreal (\"a\")}.\n
|
|
{
|
|
// 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;
|