File tree Expand file tree Collapse file tree 3 files changed +12
-1
lines changed
Expand file tree Collapse file tree 3 files changed +12
-1
lines changed Original file line number Diff line number Diff line change 1+ 2017-11-30 James J Balamuta <
[email protected] >
2+
3+ * src/attributes.cpp: Fixed missing Rcpp namespace in export interface
4+ generation
5+
162017-11-25 Dirk Eddelbuettel <
[email protected] >
27
38 * DESCRIPTION (Version, Date): Roll minor version
Original file line number Diff line number Diff line change 99 \itemize {
1010 \item Calls from exception handling to `Rf_warning()` now correctly set an
1111 initial format string (Dirk in \ghpr {777 } fixing \ghit {776 }).
12+ }
13+ \item Changes in Rcpp Attributes :
14+ \itemize {
15+ \item Addressed a missing Rcpp namespace prefix when generating a C ++
16+ interface (James Balamuta in \ghpr {779 }).
17+ }
1218 \item Changes in Rcpp Documentation :
1319 \itemize {
1420 \item The Rcpp FAQ now shows \code {Rcpp :: Rcpp.plugin.maker()}m not the
Original file line number Diff line number Diff line change @@ -2192,7 +2192,7 @@ namespace attributes {
21922192 << std::endl;
21932193 ostr () << " if (rcpp_result_gen.inherits(\" try-error\" ))"
21942194 << std::endl
2195- << " throw Rcpp::exception(as<std::string>("
2195+ << " throw Rcpp::exception(Rcpp:: as<std::string>("
21962196 << " rcpp_result_gen).c_str());"
21972197 << std::endl;
21982198 if (!function.type ().isVoid ()) {
You can’t perform that action at this time.
0 commit comments