Mercurial > hg > octave-lyh
diff liboctave/base-aepbal.h @ 11505:9a308e96194e
more data member initialization fixes
author | John W. Eaton <jwe@octave.org> |
---|---|
date | Thu, 13 Jan 2011 03:57:11 -0500 |
parents | 84199c9fc69c |
children | fd0a3ac60b0e |
line wrap: on
line diff
--- a/liboctave/base-aepbal.h +++ b/liboctave/base-aepbal.h @@ -31,6 +31,7 @@ VectorT scale; octave_idx_type ilo, ihi; char job; + base_aepbal (void) : balanced_mat (), scale (), ilo (), ihi (), job () { } public: @@ -51,6 +52,8 @@ return *this; } + virtual ~base_aepbal (void) { } + MatrixT balanced_matrix (void) const { return balanced_mat; } VectorT permuting_vector (void) const