File tree Expand file tree Collapse file tree 2 files changed +6
-1
lines changed
Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change 1+ 2013-09-14 Dirk Eddelbuettel <edd@debian.org>
2+
3+ * src/attributes.cpp (Rcpp): Precede closing '>' by space to avoid '>>'
4+
152013-09-13 Romain Francois <romain@r-enthusiasts.com>
26
37 * src/api.cpp : added "long long" to the capabilities function.
Original file line number Diff line number Diff line change @@ -2167,7 +2167,8 @@ namespace attributes {
21672167 for (size_t i = 0 ; i<arguments.size (); i++) {
21682168 const Argument& argument = arguments[i];
21692169
2170- ostr << " Rcpp::InputParameter< " << argument.type ().full_name () << " > " << argument.name ()
2170+ ostr << " Rcpp::InputParameter< "
2171+ << argument.type ().full_name () << " > " << argument.name ()
21712172 << " (" << argument.name () << " SEXP );" << std::endl;
21722173 }
21732174
You can’t perform that action at this time.
0 commit comments