$include_dir="/home/hyper-archives/boost/include"; include("$include_dir/msg-header.inc") ?>
From: Arturo_Cuebas_at_[hidden]
Date: 2004-08-24 16:10:36
> When I see
>
> boost::overload_resolve2<int, char>(&V::f)
>
> it reminds me of the windows API functions that end in 'Ex'. I think
> 'what was wrong with the first
> version of overload_resolve'?
LOL
>From best to worst IMO:
overload_resolve2<int, char>(&V::f)
overload2_resolve<int, char>(&V::f)
overload<int, char>::resolve(&V::f)
overload_resolve<int, char>()(&V::f)
overload_resolve<argtypes<int, char> >(&V::f)