diff liboctave/ArrayN.h @ 4323:0990c9b77109

[project @ 2003-02-14 07:36:26 by jwe]
author jwe
date Fri, 14 Feb 2003 07:36:27 +0000
parents d9f281027014
children 75ee1995d2b4
line wrap: on
line diff
--- a/liboctave/ArrayN.h
+++ b/liboctave/ArrayN.h
@@ -48,6 +48,7 @@
 {
 protected:
 
+
   ArrayN (T *d, const Array<int>& dims) : Array<T> (d, get_size (dims))
     {
       dimensions = dims;
@@ -95,7 +96,7 @@
 
   ArrayN<T>& operator = (const ArrayN<T>& a)
     {
-      if (this != &a && rep != a.rep)
+      if (this != &a && Array<T>::rep != a.rep)
 	{
 	  Array<T>::operator = (a);
 	  dimensions = a.dimensions;