diff liboctave/boolNDArray.h @ 4730:c88afb778c41

[project @ 2004-02-02 18:31:09 by jwe]
author jwe
date Mon, 02 Feb 2004 18:31:09 +0000
parents 334a27c8f453
children 44046bbaa52c
line wrap: on
line diff
--- a/liboctave/boolNDArray.h
+++ b/liboctave/boolNDArray.h
@@ -45,9 +45,9 @@
   
   boolNDArray (void) : ArrayN<bool> () { }
 
-  boolNDArray (dim_vector& dv) : ArrayN<bool> (dv) { }
+  boolNDArray (const dim_vector& dv) : ArrayN<bool> (dv) { }
 
-  boolNDArray (dim_vector& dv, const bool& val)
+  boolNDArray (const dim_vector& dv, const bool& val)
     : ArrayN<bool> (dv, val) { }
   
   boolNDArray (const boolNDArray& a) : ArrayN<bool> (a) { }