
15 Sep
2006
15 Sep
'06
12:24 a.m.
David Abrahams <dave <at> boost-consulting.com> writes:
And then there's the minor detail that you're not allowed to take the address of standard library (member) functions... to be technically portable and correct, you need to write a wrapper, e.g.
If I do it the correct way I get: boost_1_33_1\boost\bind.hpp(63) : error C2039: 'result_type' : is not a member of 'Geometry::resize_vector_bool' Why does that happen?
struct resize_vector_bool
Should'nt that be struct resize_vector_bool : public std::binary_function<V,N,void> ? Regards Hendrik