comparison liboctave/numeric/dbleLU.cc @ 21138:e2fca7d79169

maint: Change unsupported warning for qrupdate LU to match common syntax. * CmplxLU.cc, dbleLU.cc, fCmplxLU.cc, floatLU.cc: Change unsupported warning for qrupdate LU to match that for err_disabled_feature.
author Rik <rik@octave.org>
date Sun, 24 Jan 2016 10:11:43 -0800
parents 7cac4e7458f2
children f7121e111991
comparison
equal deleted inserted replaced
21137:623fc7d08cc6 21138:e2fca7d79169
189 #else 189 #else
190 190
191 void LU::update (const ColumnVector&, const ColumnVector&) 191 void LU::update (const ColumnVector&, const ColumnVector&)
192 { 192 {
193 (*current_liboctave_error_handler) 193 (*current_liboctave_error_handler)
194 ("luupdate: not available in this version"); 194 ("luupdate: support for qrupdate with LU updates "
195 "was unavailable or disabled when liboctave was built");
195 } 196 }
196 197
197 void LU::update (const Matrix&, const Matrix&) 198 void LU::update (const Matrix&, const Matrix&)
198 { 199 {
199 (*current_liboctave_error_handler) 200 (*current_liboctave_error_handler)
200 ("luupdate: not available in this version"); 201 ("luupdate: support for qrupdate with LU updates "
202 "was unavailable or disabled when liboctave was built");
201 } 203 }
202 204
203 void LU::update_piv (const ColumnVector&, const ColumnVector&) 205 void LU::update_piv (const ColumnVector&, const ColumnVector&)
204 { 206 {
205 (*current_liboctave_error_handler) 207 (*current_liboctave_error_handler)
206 ("luupdate: not available in this version"); 208 ("luupdate: support for qrupdate with LU updates "
209 "was unavailable or disabled when liboctave was built");
207 } 210 }
208 211
209 void LU::update_piv (const Matrix&, const Matrix&) 212 void LU::update_piv (const Matrix&, const Matrix&)
210 { 213 {
211 (*current_liboctave_error_handler) 214 (*current_liboctave_error_handler)
212 ("luupdate: not available in this version"); 215 ("luupdate: support for qrupdate with LU updates "
216 "was unavailable or disabled when liboctave was built");
213 } 217 }
214 218
215 #endif 219 #endif