Dirk Eddelbuettel
Dirk Eddelbuettel
There is still _a lot_ in `testRcppNew` and I am wondering how we can best break it down to bitesized changes. And I may be too dense here. I see...
@ManosPapadakis95 Are you aware that RcppExports.cpp will have include a file PACKAGENAME_types.h, if present? Using that approach, I can build your testRcppNew package with the Rcpp::includes() directive to include helpers.h....
No worries, there are some nuggest hidden away in the Rcpp Attributes vignettes. One thing I would change now too is `headers.h`. It's not a great name. If it defines...
When I - remove all references to `kIncludesAttribute` from `src/attributes.cpp` in your Rcpp branch 'feature-template-exports' - move `Str.h` to `inst/include` in `testRcppNew` - source `Str.h` in `inst/include/testRcppNew_types.h` via an `#include`...
Sounds good. Maybe also merge from that branch into the main branch of testRcppNew ?
The comments are getting shorter and shorter and I am not sure I follow at all times. Maybe you can add reference to your repository and or commits? Also, for...
Ok, back from a morning run and with a little triage, I can get it to pass R 4.5.0 by skipping (for now) two segments (see below). I will probably...
We can't do "base+methods" but this aims to be pretty standard (if extensive !!) S4 use. The package wraps both my RcppCCTZ (a C++ library used and developed at Google...
Turns out the underscore is us in routine `to_string` called from the converter `duration_to_string_impl` (both in `src/duration.cpp`). So maybe R 4.5.0 changes the dispatching flow and now we are getting...
Thank you @jaganmn -- it's all in the ticket here: `nanotime` implements S4 ops, and under r-devel two segments of our unit tests differ. (Underneath are RcppCCTZ for time/data ops...