changeset 6906:c5118619023e

[project @ 2007-09-17 16:38:05 by jwe]
author jwe
date Mon, 17 Sep 2007 16:38:05 +0000
parents aee959a21c4b
children c8081f4c094f
files src/ChangeLog src/ov-typeinfo.h
diffstat 2 files changed, 4 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/ChangeLog	Mon Sep 17 16:00:30 2007 +0000
+++ b/src/ChangeLog	Mon Sep 17 16:38:05 2007 +0000
@@ -1,5 +1,8 @@
 2007-09-17  John W. Eaton  <jwe@octave.org>
 
+	* ov-typeinfo.h (cat_op_fcn): Third arg in function pointer
+	typedef is now Array<octave_idx_type> instead of Array<int>.
+
 	* file-io.cc (do_stream_open): Use binary mode by default.
 
 2007-09-14  Shai Ayal  <shaiay@users.sourceforge.net>
--- a/src/ov-typeinfo.h	Mon Sep 17 16:00:30 2007 +0000
+++ b/src/ov-typeinfo.h	Mon Sep 17 16:38:05 2007 +0000
@@ -48,7 +48,7 @@
     (const octave_base_value&, const octave_base_value&);
 
   typedef octave_value (*cat_op_fcn)
-    (octave_base_value&, const octave_base_value&, const Array<int>& ra_idx);
+    (octave_base_value&, const octave_base_value&, const Array<octave_idx_type>& ra_idx);
 
   typedef octave_value (*assign_op_fcn)
     (octave_base_value&, const octave_value_list&, const octave_base_value&);