top | item 44284772

(no title)

mandarax8 | 8 months ago

std::bind is bad for him for the same reasons std::function is bad though

discuss

order

spacechild1|8 months ago

Why? If the bound (member) function crashes, you should get a perfectly useable crash report. AFAIU his problem was that lambdas are anonymous function objects. This is not the case here, because the actual code resides in a regular (member) function.

dustbunny|8 months ago

Does a stack trace from a crash in a bound function show the line number of where the bind() took place?