From 8c6158be40624614ff1139d325ca9a54a91e8581 Mon Sep 17 00:00:00 2001 From: John Wiegley Date: Mon, 23 Apr 2007 04:42:15 +0000 Subject: Removed bogus default arguments. --- xpath.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'xpath.h') diff --git a/xpath.h b/xpath.h index 8b4e01e3..c0cf81d0 100644 --- a/xpath.h +++ b/xpath.h @@ -149,20 +149,20 @@ public: template static op_t * - make_functor(const string& name = "", T * ptr, U T::*mptr) { + make_functor(const string& name, T * ptr, U T::*mptr) { return wrap_functor(new member_functor_t(name, ptr, mptr)); } template static op_t * - make_functor(const string& fname = "", T * ptr, + make_functor(const string& fname, T * ptr, void (T::*mptr)(value_t& result)) { return wrap_functor(new memfun_functor_t(fname, ptr, mptr)); } template static op_t * - make_functor(const string& fname = "", T * ptr, + make_functor(const string& fname, T * ptr, void (T::*mptr)(value_t& result, scope_t * locals)) { return wrap_functor(new memfun_args_functor_t(fname, ptr, mptr)); } -- cgit v1.2.3