diff src/ov.h @ 4015:6476dd85a65f

[project @ 2002-08-02 07:59:19 by jwe]
author jwe
date Fri, 02 Aug 2002 07:59:20 +0000
parents 95663a3a2682
children a8621d87fbf5
line wrap: on
line diff
--- a/src/ov.h	Thu Aug 01 20:55:58 2002 +0000
+++ b/src/ov.h	Fri Aug 02 07:59:20 2002 +0000
@@ -350,11 +350,11 @@
 
   // Are any or all of the elements in this constant nonzero?
 
-  virtual octave_value all (void) const
-    { return rep->all (); }
+  virtual octave_value all (int dim = 0) const
+    { return rep->all (dim); }
 
-  virtual octave_value any (void) const
-    { return rep->any (); }
+  virtual octave_value any (int dim = 0) const
+    { return rep->any (dim); }
 
   // Other type stuff.