Dirk Eddelbuettel
Dirk Eddelbuettel
(Maintainer of that container here: It is _imperative_ to use `RD` as that is the SAN-instrumented version on the container and by standard debugging convention that is always the upcoming...
@aadler we all are but Luke is working on that: https://mastodon.social/deck/@eddelbuettel/112633661372552025
Yes trickier issue. "Eventually" we will make the same subsitution but we probably need to have a 'deprecated' period first where we warn. This is still a user-facing API.
We're not there yet, but we are moving from wheels that are almost quadratic with their five sides to those with six. Almost a smooth ride now. Kidding aside, many/most...
With Rcpp 1.1.0 at CRAN this can now be closed.
Thanks for the note. We will ponder this, Making a change may risk upsetting existing code, but documenting your workaround of adding an explicit zero seems like a good idea.
We could try that.
I am no compiler expert but looking at your diff I would suspect the 'empty' addition might get optimised away? _Edit:_ No it doesn't. See below.
Yup. ```c++ #include #include double fixup(double d) { return d + 0.0; } double fixup2(double d) { return (d == 0.0 ? 0.0 : d); } int main(int argc, char...
That's likely what I saw re-rendering the slide: by not adding an appropriate palette, I 'ran out of colours', got some empty boxes and it all went downhill from there....