Björn Fahller
Björn Fahller
Thank you. I will have a look and see what I can do.
Thank you. Yes, I have, several times, but I'm afraid I have not been very successful. There's obviously something that I don't understand. It wouldn't surprise me if it's easy...
I'm calling this fixed, with your PR. Maybe open new issues for remaining problems?
I'm leaving this open until a release has been tagged. It reduces the risk that someone else reports this issue until then.
I am surprised that it has taken this long for anyone to report this. Yes, the implicit capture of `this` with `[=]` is deprecated since C++20. Unfortunately I really don't...
Maybe possible, but not easily. Catch2, and I believe doctest also, only implements tests as member functions when you use fixtures, otherwise they are freestanding functions. So the macro would...
My current thoughts are on introducing yet a new set of macros, with `[=,this]` captures. I'm not sure how to name them, though. For `WITH()`, it'll work out nicely as...
Have a look at branch [capture_this_copy](https://github.com/rollbear/trompeloeil/tree/capture_this_copy). It has new macros, MEM_WITH(), MEM_RETURN(), etc. MEM for "member". I'm not thrilled about the name, so suggestions for alternatives are very welcome. No...
Thank you. I've had this as a vague idea in the back of my head for many years, mostly because it allows you to control what you capture and how....
All expectations set up are valid in the scope of the set up, so `ALLOW_CALL()` in `setupExpectations()` is alive until the end of the function `setupExpectations()` and therefore no longer...