-
Notifications
You must be signed in to change notification settings - Fork 76
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
Rcpp exports duplicated #408
Comments
Nice catch. It so happens that I have a fix (I think) as part of another cleanup / rearrangement of the conditional compilation at also makes it easier to follow it. I can commit, but I was waiting for you to (if at all possible) get to PR #404 first? |
I was looking at #404 when I stumbled across this. The fix is trivial (drop the extra exports tags!) and I will submit PR shortly. |
We can do it the other way around too: I could clean this up, and we rebase #404 afterwards. The basic idea of what I have tested is to
But if you want you could write a PR now too I suppose under the existing structure and have the |
This has been taken care of in #409 |
To resolve #405 we now define every exported C++ function twice. This is fine because preprocessing, but we should only
Rcpp::export
each function once - else a call tocompileAttributes()
results in duplicate export entries.The text was updated successfully, but these errors were encountered: