Suppose I have method:

void foo(const std::string& s);

Can I create boost::function:

boost::function<void(const std::string&)> f = boost::bind(foo, temp);

where temp is char* that is deleted before f is called.

link|improve this question

63% accept rate
feedback

2 Answers

up vote 5 down vote accepted

Yes. Bind cannot know that the char* can be held in a string, or that it is being passed to a string. To circumvent this, use:

boost::bind(foo, std::string(temp));

So that your temp is copied into the binder as a string.

link|improve this answer
feedback

And this is compiling for you? It should be

boost::function<void()> f = boost::bind(foo, std::string(temp));
link|improve this answer
So for what I've been down voted? My answer IS correct. – Pawel Zubrycki Nov 7 '11 at 13:51
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.