File tree Expand file tree Collapse file tree 3 files changed +11
-1
lines changed
Expand file tree Collapse file tree 3 files changed +11
-1
lines changed Original file line number Diff line number Diff line change 1+ 2014-02-16 JJ Allaire <jj@rstudio.org>
2+
3+ * src/attributes.cpp Replace (incorrect) call to
4+ Rcpp::internal::jumpToTop with Rf_onintr
5+
162014-02-07 Kevin Ushey <kevinushey@gmail.com>
27
38 * inst/include/Rcpp/Reference.h: Add default ctor
Original file line number Diff line number Diff line change 1616 depending on IndexHash (unique , sort_unique , match ) will now properly
1717 handle NA and NaN values for numeric vectors.
1818 }
19+ \item Changes in Rcpp Attributes
20+ \itemize {
21+ \item Fix issue preventing packages with Rcpp :: interfaces attribute
22+ from compiling.
23+ }
1924 }
2025}
2126
Original file line number Diff line number Diff line change @@ -2229,7 +2229,7 @@ namespace attributes {
22292229 << std::endl
22302230 << " if (__isInterrupt) {" << std::endl
22312231 << " UNPROTECT(1);" << std::endl
2232- << " Rcpp::internal::jumpToTop ();" << std::endl
2232+ << " Rf_onintr ();" << std::endl
22332233 << " }" << std::endl
22342234 << " Rboolean __isError = Rf_inherits(__result, \" try-error\" );"
22352235 << std::endl
You can’t perform that action at this time.
0 commit comments