# HG changeset patch # User jwe # Date 1108581512 0 # Node ID 275a955418311f0af64bfa91c5de4fad8125ca94 # Parent dd07ee8af4b3c93d8c51a8903ec4f8cd3c75773b [project @ 2005-02-16 19:18:32 by jwe] diff --git a/src/ChangeLog b/src/ChangeLog --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,9 @@ +2005-02-16 John W. Eaton + + * ov.h, ov.cc + (octave_value::octave_value (const ArrayN&, bool)): + Delete. + 2005-02-15 John W. Eaton * dirfns.cc (deftypefn): Don't print to octave_stdout if nargout > 0. diff --git a/src/ov.cc b/src/ov.cc --- a/src/ov.cc +++ b/src/ov.cc @@ -423,19 +423,6 @@ rep->count = 1; } -octave_value::octave_value (const ArrayN& a, bool is_csl) - : rep (0) -{ - Cell c (a); - - if (is_csl) - rep = new octave_cs_list (c); - else - rep = new octave_cell (c); - - rep->count = 1; -} - octave_value::octave_value (const Matrix& m) : rep (new octave_matrix (m)) { diff --git a/src/ov.h b/src/ov.h --- a/src/ov.h +++ b/src/ov.h @@ -189,7 +189,6 @@ octave_value (octave_time t); octave_value (double d); - octave_value (const ArrayN& a, bool is_cs_list = false); octave_value (const Cell& c, bool is_cs_list = false); octave_value (const Matrix& m); octave_value (const NDArray& nda);