Cristian Morales Vega
Cristian Morales Vega
FWIW I do find these tools useful. They do find real improvement situations and automate stuff that would otherwise create discussions in PRs that I would rather avoid. I don't...
clang-tidy 9.0.0 introduces a funny one: https://clang.llvm.org/extra/clang-tidy/checks/modernize-use-trailing-return-type.html Every `TROMPELOEIL_MAKE_MOCK` macro triggers it :-( I'm still trying to decide whether to keep that check in my clang-tidy or not... I have...
About versions, it's easy to use the latest ones, specially if you go for header-only ``` $ git clone [email protected]:fmtlib/fmt.git Cloning into 'fmt'... remote: Enumerating objects: 28566, done. remote: Counting...
> * Any change in behaviour if the body of `print(std::ostream&, const T&)` is commented out? Yes, that makes it work. As does using `fmt::print(os, "{}", t);` (after including `fmt/ostream.h`)...
In this specific case capturing by copy is exactly what I want. I need to move it, because the async_do interface only lets me do that but still want to...
So basically, is ``` auto result = data{}; REQUIRE_CALL_V(mock, async_do(trompeloeil::_), .LR_SIDE_EFFECT(_1(std::move(result)))); REQUIRE_CALL_V(mock, receive(result)); ``` broken because `receive(result)` refers to a moved-from `result` or not?
Actually the problem is not what I though it was. Now I'm not really sure what's going on. But it can be seen here: ``` #include #include #include namespace example...
> Removing the Jira plugin resolved the NPE (although `slackUserIdsFromCommitters(botUser: true)` is returning an empty list `[]`, even if the build has a changeset) I (think) am seeing the same...
Yes. To be clear, the fix from 2.44 __does__ work for me. I see the JiraMailAddressResolver null pointer exception message only in the Jenkins logger, it's not stopping the Slack...
Since @mariadb-JeffBachtel said `(although slackUserIdsFromCommitters(botUser: true) is returning an empty list [], even if the build has a changeset)` I simply supposed a general bug in the slack plugin. Looking...