diff liboctave/chMatrix.cc @ 2384:d9147efd1a93

[project @ 1996-10-12 17:56:38 by jwe]
author jwe
date Sat, 12 Oct 1996 17:56:39 +0000
parents 905e19d7eef8
children 8ed4362aa0d6
line wrap: on
line diff
--- a/liboctave/chMatrix.cc	Sat Oct 12 17:52:55 1996 +0000
+++ b/liboctave/chMatrix.cc	Sat Oct 12 17:56:39 1996 +0000
@@ -73,7 +73,7 @@
     }
 }
 
-int
+bool
 charMatrix::operator == (const charMatrix& a) const
 {
   if (rows () != a.rows () || cols () != a.cols ())
@@ -82,7 +82,7 @@
   return equal (data (), a.data (), length ());
 }
 
-int
+bool
 charMatrix::operator != (const charMatrix& a) const
 {
   return !(*this == a);