diff src/OPERATORS/op-scm-scm.cc @ 5760:8d7162924bd3

[project @ 2006-04-14 04:01:37 by jwe]
author jwe
date Fri, 14 Apr 2006 04:01:40 +0000
parents 22994a5730f9
children 6b9cec830d72
line wrap: on
line diff
--- a/src/OPERATORS/op-scm-scm.cc	Thu Apr 13 13:04:33 2006 +0000
+++ b/src/OPERATORS/op-scm-scm.cc	Fri Apr 14 04:01:40 2006 +0000
@@ -96,7 +96,7 @@
 DEFBINOP (div, sparse_complex_matrix, sparse_complex_matrix)
 {
   CAST_BINOP_ARGS (const octave_sparse_complex_matrix&, 
-		   octave_sparse_complex_matrix&);
+		   const octave_sparse_complex_matrix&);
   SparseType typ = v2.sparse_type ();
   SparseComplexMatrix ret = xdiv (v1.sparse_complex_matrix_value (), 
 				  v2.sparse_complex_matrix_value (), typ);
@@ -113,7 +113,7 @@
 
 DEFBINOP (ldiv, sparse_complex_matrix, sparse_complex_matrix)
 {
-  CAST_BINOP_ARGS (octave_sparse_complex_matrix&, 
+  CAST_BINOP_ARGS (const octave_sparse_complex_matrix&, 
 		   const octave_sparse_complex_matrix&);
   SparseType typ = v1.sparse_type ();