New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add [[Rcpp::init]] attribute for registering functions to run on package init #903
Conversation
Man you are fast :) |
DESCRIPTION
Outdated
@@ -1,6 +1,6 @@ | |||
Package: Rcpp | |||
Title: Seamless R and C++ Integration | |||
Version: 0.12.18.2 | |||
Version: 0.12.18.3 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
.3 is already used in the other open PR. Can you maybe cherry-pick over here or accomodate otherwise?
my_package_init(dll); | ||
} | ||
``` | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Lovely stuff!
Got rid of the version bump |
Could have made .4 too. Wonder if we need to this, maybe via the most package we have for unit tests? Haven't looked at that one in a while ... |
That looks great. |
Addresses #902