changeset 9734:1a9508872af0

initialize QR:: constants
author Jaroslav Hajek <highegg@gmail.com>
date Sat, 17 Oct 2009 06:29:05 +0200
parents aab4f2aa9ed9
children 4d03aff3add3
files liboctave/ChangeLog liboctave/dbleQR.cc
diffstat 2 files changed, 6 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/liboctave/ChangeLog	Fri Oct 16 13:13:36 2009 +0200
+++ b/liboctave/ChangeLog	Sat Oct 17 06:29:05 2009 +0200
@@ -1,3 +1,7 @@
+2009-10-17  Jaroslav Hajek  <highegg@gmail.com>
+
+	* dbleQR.cc: Initialize QR::raw, QR::economy and QR::std.
+
 2009-10-16  Jaroslav Hajek  <highegg@gmail.com>
 
 	* ArrayN.h: Remove everything, just #define ArrayN Array. 
--- a/liboctave/dbleQR.cc	Fri Oct 16 13:13:36 2009 +0200
+++ b/liboctave/dbleQR.cc	Sat Oct 17 06:29:05 2009 +0200
@@ -84,6 +84,8 @@
 #endif
 }
 
+const QR::type QR::raw, QR::std, QR::economy;
+
 QR::QR (const Matrix& a, qr_type_t qr_type)
 {
   init (a, qr_type);