# HG changeset patch # User jwe # Date 830500263 0 # Node ID c5b4b6d5174068a4877fd743b0b33b5fbb342c66 # Parent 088b063500d18a9d2f8e9b67bc595ef5a2636f82 [project @ 1996-04-26 06:28:59 by jwe] diff -r 088b063500d1 -r c5b4b6d51740 src/pt-fvc.cc --- a/src/pt-fvc.cc Fri Apr 26 06:21:21 1996 +0000 +++ b/src/pt-fvc.cc Fri Apr 26 06:31:03 1996 +0000 @@ -617,7 +617,7 @@ my_name = nm; } -tree_builtin::tree_builtin (Mapper_fcn& m_fcn, const string &nm) +tree_builtin::tree_builtin (builtin_mapper_function& m_fcn, const string &nm) { mapper_fcn = m_fcn; is_mapper = 1; @@ -658,7 +658,7 @@ } static octave_value -apply_mapper_fcn (const octave_value& arg, Mapper_fcn& m_fcn, +apply_mapper_fcn (const octave_value& arg, builtin_mapper_function& m_fcn, bool /* print */) { octave_value retval; diff -r 088b063500d1 -r c5b4b6d51740 src/pt-fvc.h --- a/src/pt-fvc.h Fri Apr 26 06:21:21 1996 +0000 +++ b/src/pt-fvc.h Fri Apr 26 06:31:03 1996 +0000 @@ -153,7 +153,7 @@ public: tree_builtin (const string& nm = string ()); - tree_builtin (Mapper_fcn& m_fcn, const string& nm = string ()); + tree_builtin (builtin_mapper_function& m_fcn, const string& nm = string ()); tree_builtin (Octave_builtin_fcn f, const string& nm = string ()); @@ -175,7 +175,7 @@ private: bool is_mapper; - Mapper_fcn mapper_fcn; + builtin_mapper_function mapper_fcn; Octave_builtin_fcn fcn; string my_name; };