Hi Rcpp experts, The CRAN maintainers inform me that when testing one of my
packages under
g++ -std=gnu++14 (logs with gcc 5.3)
that the following code snippet,
IntegerVector dpr = diff(pr); /* pr is an Rcpp::IntegerVector */
icolvec diffpersons(dpr.begin(), nc - 1, false);
generates the follow
Hi Rcpp experts, The CRAN maintainers inform me that when testing one of my
packages under
g++ -std=gnu++14 (logs with gcc 5.3)
that the following code snippet,
IntegerVector dpr = diff(pr); /* pr is an Rcpp::IntegerVector */
icolvec diffpersons(dpr.begin(), nc - 1, false);
generates the follow
Hi Terrance,
On 21 January 2016 at 16:44, terrance savitsky wrote:
| Hi Rcpp experts, The CRAN maintainers inform me that when testing one of my
| packages underĀ
|
| g++ -std=gnu++14 (logs with gcc 5.3)
|
| that the following code snippet,
|
| IntegerVector dpr = diff(pr); /* pr is an Rcpp::I