comparison liboctave/numeric/CmplxLU.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
191 #else 191 #else
192 192
193 void ComplexLU::update (const ComplexColumnVector&, const ComplexColumnVector&) 193 void ComplexLU::update (const ComplexColumnVector&, const ComplexColumnVector&)
194 { 194 {
195 (*current_liboctave_error_handler) 195 (*current_liboctave_error_handler)
196 ("luupdate: not available in this version"); 196 ("luupdate: support for qrupdate with LU updates "
197 "was unavailable or disabled when liboctave was built");
197 } 198 }
198 199
199 void ComplexLU::update (const ComplexMatrix&, const ComplexMatrix&) 200 void ComplexLU::update (const ComplexMatrix&, const ComplexMatrix&)
200 { 201 {
201 (*current_liboctave_error_handler) 202 (*current_liboctave_error_handler)
202 ("luupdate: not available in this version"); 203 ("luupdate: support for qrupdate with LU updates "
204 "was unavailable or disabled when liboctave was built");
203 } 205 }
204 206
205 void ComplexLU::update_piv (const ComplexColumnVector&, 207 void ComplexLU::update_piv (const ComplexColumnVector&,
206 const ComplexColumnVector&) 208 const ComplexColumnVector&)
207 { 209 {
208 (*current_liboctave_error_handler) 210 (*current_liboctave_error_handler)
209 ("luupdate: not available in this version"); 211 ("luupdate: support for qrupdate with LU updates "
212 "was unavailable or disabled when liboctave was built");
210 } 213 }
211 214
212 void ComplexLU::update_piv (const ComplexMatrix&, const ComplexMatrix&) 215 void ComplexLU::update_piv (const ComplexMatrix&, const ComplexMatrix&)
213 { 216 {
214 (*current_liboctave_error_handler) 217 (*current_liboctave_error_handler)
215 ("luupdate: not available in this version"); 218 ("luupdate: support for qrupdate with LU updates "
219 "was unavailable or disabled when liboctave was built");
216 } 220 }
217 221
218 #endif 222 #endif