# HG changeset patch # User jwe # Date 1094522482 0 # Node ID 91b61d27b9b4c1dd1522637897d1c4e982ca9673 # Parent c0d8e8afa82fb3e94e51571c6a76d363151c9134 [project @ 2004-09-07 02:01:22 by jwe] diff --git a/src/ChangeLog b/src/ChangeLog --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,5 +1,7 @@ 2004-09-06 John W. Eaton + * 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 diff --git a/src/ov-fcn-inline.cc b/src/ov-fcn-inline.cc --- a/src/ov-fcn-inline.cc +++ b/src/ov-fcn-inline.cc @@ -357,5 +357,3 @@ ;;; mode: C++ *** ;;; End: *** */ - - diff --git a/src/ov.cc b/src/ov.cc --- a/src/ov.cc +++ b/src/ov.cc @@ -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 (); }