freebsd-ports/math/octave-forge-symband/files/patch-src_SymBand.cc
Stephen Montgomery-Smith 6473aac25b - Update math/octave to 6.2.0.
- 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.
2021-02-21 22:41:34 +00:00

11 lines
346 B
C++

--- src/SymBand.cc.orig 2021-02-21 22:29:47 UTC
+++ src/SymBand.cc
@@ -366,7 +366,7 @@ DEFUN_DLD (SBSolve, args, , "[...] = SBSolve (...)\n\
return retval;
}
- if ( A_arg.is_real_type() && B_arg.is_real_type() ) {
+ if ( A_arg.isreal() && B_arg.isreal() ) {
Matrix A= A_arg.matrix_value();
Matrix B= B_arg.matrix_value();