File tree Expand file tree Collapse file tree 3 files changed +6
-1
lines changed Expand file tree Collapse file tree 3 files changed +6
-1
lines changed Original file line number Diff line number Diff line change
1
+ 2017-06-14 JJ Allaire <
[email protected] >
2
+
3
+ * src/attributes.cpp: Add Shield around parameters in Rcpp::interfaces
4
+
1
5
2017-06-07 Dirk Eddelbuettel <
[email protected] >
2
6
3
7
* README.md: Use alternates for img.shields.io GPL-2+ badges
Original file line number Diff line number Diff line change 24
24
addressing \ghit {702 }).
25
25
\item Automatically register init functions for Rcpp Modules (\ghpr {705 }
26
26
addressing \ghit {704 }).
27
+ \item Add Shield around parameters in Rcpp :: interfaces (\ghit {712 }).
27
28
}
28
29
}
29
30
}
Original file line number Diff line number Diff line change @@ -2172,7 +2172,7 @@ namespace attributes {
2172
2172
2173
2173
const std::vector<Argument>& args = function.arguments ();
2174
2174
for (std::size_t i = 0 ; i<args.size (); i++) {
2175
- ostr () << " Rcpp::wrap(" << args[i].name () << " )" ;
2175
+ ostr () << " Shield<SEXP>( Rcpp::wrap(" << args[i].name () << " ) )" ;
2176
2176
if (i != (args.size ()-1 ))
2177
2177
ostr () << " , " ;
2178
2178
}
You can’t perform that action at this time.
0 commit comments