changeset 4966:91b61d27b9b4

[project @ 2004-09-07 02:01:22 by jwe]
author jwe
date Tue, 07 Sep 2004 02:01:22 +0000
parents c0d8e8afa82f
children 0355f2f7d193
files src/ChangeLog src/ov-fcn-inline.cc src/ov.cc
diffstat 3 files changed, 4 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/src/ChangeLog	Mon Sep 06 20:19:57 2004 +0000
+++ b/src/ChangeLog	Tue Sep 07 02:01:22 2004 +0000
@@ -1,5 +1,7 @@
 2004-09-06  John W. Eaton  <jwe@octave.org>
 
+	* ov.cc (install_types): Call octave_fcn_inline::register_type.
+
 	* version.h (OCTAVE_API_VERSION): Now api-v10.
 
 	* OPERATORS/op-b-b.cc, OPERATORS/op-bm-bm.cc: Define and install
--- a/src/ov-fcn-inline.cc	Mon Sep 06 20:19:57 2004 +0000
+++ b/src/ov-fcn-inline.cc	Tue Sep 07 02:01:22 2004 +0000
@@ -357,5 +357,3 @@
 ;;; mode: C++ ***
 ;;; End: ***
 */
-
-
--- a/src/ov.cc	Mon Sep 06 20:19:57 2004 +0000
+++ b/src/ov.cc	Tue Sep 07 02:01:22 2004 +0000
@@ -66,6 +66,7 @@
 #include "ov-dld-fcn.h"
 #include "ov-usr-fcn.h"
 #include "ov-fcn-handle.h"
+#include "ov-fcn-inline.h"
 #include "ov-typeinfo.h"
 
 #include "defun.h"
@@ -2153,6 +2154,7 @@
   octave_user_function::register_type ();
   octave_dld_function::register_type ();
   octave_fcn_handle::register_type ();
+  octave_fcn_inline::register_type ();
   octave_streamoff::register_type ();
 }