diff 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
line wrap: on
line diff
--- a/liboctave/numeric/CmplxLU.cc	Sat Jan 23 17:44:57 2016 -0800
+++ b/liboctave/numeric/CmplxLU.cc	Sun Jan 24 10:11:43 2016 -0800
@@ -193,26 +193,30 @@
 void ComplexLU::update (const ComplexColumnVector&, const ComplexColumnVector&)
 {
   (*current_liboctave_error_handler)
-    ("luupdate: not available in this version");
+    ("luupdate: support for qrupdate with LU updates "
+     "was unavailable or disabled when liboctave was built");
 }
 
 void ComplexLU::update (const ComplexMatrix&, const ComplexMatrix&)
 {
   (*current_liboctave_error_handler)
-    ("luupdate: not available in this version");
+    ("luupdate: support for qrupdate with LU updates "
+     "was unavailable or disabled when liboctave was built");
 }
 
 void ComplexLU::update_piv (const ComplexColumnVector&,
                             const ComplexColumnVector&)
 {
   (*current_liboctave_error_handler)
-    ("luupdate: not available in this version");
+    ("luupdate: support for qrupdate with LU updates "
+     "was unavailable or disabled when liboctave was built");
 }
 
 void ComplexLU::update_piv (const ComplexMatrix&, const ComplexMatrix&)
 {
   (*current_liboctave_error_handler)
-    ("luupdate: not available in this version");
+    ("luupdate: support for qrupdate with LU updates "
+     "was unavailable or disabled when liboctave was built");
 }
 
 #endif