Rcpp11 / attributes

Standalone implementation of Rcpp attributes.
Other
3 stars 1 forks source link

Rcpp::plugin attribute #18

Closed romainfrancois closed 10 years ago

romainfrancois commented 10 years ago

As described [here](https://groups.google.com/forum/#!topic/r-and-cpp/QjzE5a4aNOM] by Gabor, we seem to have an issue with the Rcpp::pluginsattribute.

// [[Rcpp::plugins("cpp11")]]
// [[Rcpp::export]]
int useCpp11() {
    auto x = 10;
    return x;
}