comparison liboctave/numeric/fCmplxLU.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
196 196
197 void FloatComplexLU::update (const FloatComplexColumnVector&, 197 void FloatComplexLU::update (const FloatComplexColumnVector&,
198 const FloatComplexColumnVector&) 198 const FloatComplexColumnVector&)
199 { 199 {
200 (*current_liboctave_error_handler) 200 (*current_liboctave_error_handler)
201 ("luupdate: not available in this version"); 201 ("luupdate: support for qrupdate with LU updates "
202 "was unavailable or disabled when liboctave was built");
202 } 203 }
203 204
204 void FloatComplexLU::update (const FloatComplexMatrix&, 205 void FloatComplexLU::update (const FloatComplexMatrix&,
205 const FloatComplexMatrix&) 206 const FloatComplexMatrix&)
206 { 207 {
207 (*current_liboctave_error_handler) 208 (*current_liboctave_error_handler)
208 ("luupdate: not available in this version"); 209 ("luupdate: support for qrupdate with LU updates "
210 "was unavailable or disabled when liboctave was built");
209 } 211 }
210 212
211 void FloatComplexLU::update_piv (const FloatComplexColumnVector&, 213 void FloatComplexLU::update_piv (const FloatComplexColumnVector&,
212 const FloatComplexColumnVector&) 214 const FloatComplexColumnVector&)
213 { 215 {
214 (*current_liboctave_error_handler) 216 (*current_liboctave_error_handler)
215 ("luupdate: not available in this version"); 217 ("luupdate: support for qrupdate with LU updates "
218 "was unavailable or disabled when liboctave was built");
216 } 219 }
217 220
218 void FloatComplexLU::update_piv (const FloatComplexMatrix&, 221 void FloatComplexLU::update_piv (const FloatComplexMatrix&,
219 const FloatComplexMatrix&) 222 const FloatComplexMatrix&)
220 { 223 {
221 (*current_liboctave_error_handler) 224 (*current_liboctave_error_handler)
222 ("luupdate: not available in this version"); 225 ("luupdate: support for qrupdate with LU updates "
226 "was unavailable or disabled when liboctave was built");
223 } 227 }
224 228
225 #endif 229 #endif