view src/of-sparsersb-1-no-internal-mex-fcns.patch @ 6264:3eae40f95cc3

qt5: update to v5.15.5 * src/qtbase.mk: update version, checksum * src/qtimageformats.mk, src/qtsvg.mk, src/qttools.mk, src/qttranslations.mk: update checksum * src/qtbase-2-gcc11.patch: deleted * dist-files.mk: remove ref to deleted file
author John Donoghue <john.donoghue@ieee.org>
date Mon, 20 Jun 2022 07:36:53 -0400
parents 1b79116b34ff
children
line wrap: on
line source

# HG changeset patch
# User Markus Mützel <markus.muetzel@gmx.de>
# Date 1633779189 -7200
#      Sat Oct 09 13:33:09 2021 +0200
# Node ID 11cafc15faeec2ea20216f8b6e22906df5932e53
# Parent  67a14d968d2db3ffe34474e6be1c7a2d164ad416
Don't use internal functions (bug #61320).

* src/sparsersb.cc (subsasgn): Use "ridx" and "cidx" instead of internal
  functions.

diff -r 67a14d968d2d -r 11cafc15faee src/sparsersb.cc
--- a/src/sparsersb.cc	Tue Sep 21 11:09:59 2021 +0200
+++ b/src/sparsersb.cc	Sat Oct 09 13:33:09 2021 +0200
@@ -1242,8 +1242,8 @@
 						if(ovl(0).issparse() && ovl(0).isreal() && rhs.isreal())
 						{
   							const SparseBoolMatrix sm = SparseBoolMatrix (ovl(0).sparse_matrix_value());
-							const octave_idx_type * ir = sm.mex_get_ir ();
-							const octave_idx_type * jc = sm.mex_get_jc ();
+							const octave_idx_type * ir = sm.ridx ();
+							const octave_idx_type * jc = sm.cidx ();
         						const octave_idx_type nc = sm.cols ();
 							RSBOI_DEBUG_NOTICE(RSBOI_D_EMPTY_MSG);
 							const RSBOI_T rv = rhs.double_value();