changeset 1620:43df82dfb1f7

[project @ 1995-11-04 11:18:50 by jwe]
author jwe
date Sat, 04 Nov 1995 11:18:50 +0000
parents 1a35c8c91349
children 0d0c53b02a33
files liboctave/Array-idx.h
diffstat 1 files changed, 0 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/liboctave/Array-idx.h	Sat Nov 04 11:07:21 1995 +0000
+++ b/liboctave/Array-idx.h	Sat Nov 04 11:18:50 1995 +0000
@@ -41,8 +41,6 @@
 void
 Array<T>::clear_index (void)
 {
-  cerr << "clearing index for " << this << "\n";
-
   delete [] idx;
   idx = 0;
   idx_count = 0;
@@ -52,8 +50,6 @@
 void
 Array<T>::set_index (const idx_vector& i)
 {
-  cerr << "setting index for " << this << "\n";
-
   if (! idx)
     idx = new idx_vector [max_indices];