Skip to content

Commit c5a97a3

Browse files
authored
Merge pull request #1109 from ellert/remove-confusing-comment
Remove obsolete and confusing comment
2 parents ca5123a + 0ce01c8 commit c5a97a3

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

ChangeLog

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
2020-08-20 Mattias Ellert <[email protected]>
2+
3+
* inst/include/Rcpp/lang.h: Remove obsolete and confusing comment
4+
15
2020-08-05 Dirk Eddelbuettel <[email protected]>
26

37
* DESCRIPTION (Version, Date): Roll minor version

inst/include/Rcpp/lang.h

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -61,11 +61,7 @@ inline SEXP Rcpp_list5(SEXP x0, SEXP x1, SEXP x2, SEXP x3, SEXP x4) {
6161
return x0;
6262
}
6363

64-
65-
66-
// `Rf_lang6()` is available on R 3.3, but `Rf_list6()` is not
67-
inline SEXP Rcpp_list6( SEXP x0, SEXP x1, SEXP x2, SEXP x3, SEXP x4, SEXP x5 )
68-
{
64+
inline SEXP Rcpp_list6(SEXP x0, SEXP x1, SEXP x2, SEXP x3, SEXP x4, SEXP x5) {
6965
PROTECT(x0);
7066
x0 = Rf_cons(x0, Rcpp_list5(x1, x2, x3, x4, x5));
7167
UNPROTECT(1);

0 commit comments

Comments
 (0)