Skip to content

Commit e7c295d

Browse files
committed
whitespace cleanup in one file, NEWS updated
1 parent bb05365 commit e7c295d

File tree

3 files changed

+10
-56
lines changed

3 files changed

+10
-56
lines changed

ChangeLog

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
2020-10-22 Dirk Eddelbuettel <[email protected]>
2+
3+
* inst/include/Rcpp/lang.h: Remove spurious whitespace
4+
5+
* inst/NEWS.Rd: Updated for two PRs
6+
17
2020-10-21 Dirk Eddelbuettel <[email protected]>
28

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

inst/NEWS.Rd

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,10 @@
1313
\item Add \code{push_back} and \code{push_front} for
1414
\code{DataFrame} (Walter Somerville in \ghpr{1099} fixing
1515
\ghit{1094}).
16+
\item Remove a misleading-to-wrong comment (Mattias Ellert in
17+
\ghpr{1109} cleaning up after \ghpr{1049}).
18+
\item Address a sanitizer report by initializing two private
19+
\code{bool} variables (Benjamin Christoffersen in \ghpr{1113}).
1620
}
1721
}
1822
}

inst/include/Rcpp/lang.h

Lines changed: 0 additions & 56 deletions
Original file line numberDiff line numberDiff line change
@@ -68,10 +68,6 @@ inline SEXP Rcpp_list6(SEXP x0, SEXP x1, SEXP x2, SEXP x3, SEXP x4, SEXP x5) {
6868
return x0;
6969
}
7070

71-
72-
73-
74-
7571
inline SEXP Rcpp_list7( SEXP x0, SEXP x1, SEXP x2, SEXP x3, SEXP x4, SEXP x5, SEXP x6 )
7672
{
7773
PROTECT(x0);
@@ -88,10 +84,6 @@ inline SEXP Rcpp_lang7( SEXP x0, SEXP x1, SEXP x2, SEXP x3, SEXP x4, SEXP x5, SE
8884
return x0;
8985
}
9086

91-
92-
93-
94-
9587
inline SEXP Rcpp_list8( SEXP x0, SEXP x1, SEXP x2, SEXP x3, SEXP x4, SEXP x5, SEXP x6, SEXP x7 )
9688
{
9789
PROTECT(x0);
@@ -108,10 +100,6 @@ inline SEXP Rcpp_lang8( SEXP x0, SEXP x1, SEXP x2, SEXP x3, SEXP x4, SEXP x5, SE
108100
return x0;
109101
}
110102

111-
112-
113-
114-
115103
inline SEXP Rcpp_list9( SEXP x0, SEXP x1, SEXP x2, SEXP x3, SEXP x4, SEXP x5, SEXP x6, SEXP x7, SEXP x8 )
116104
{
117105
PROTECT(x0);
@@ -128,10 +116,6 @@ inline SEXP Rcpp_lang9( SEXP x0, SEXP x1, SEXP x2, SEXP x3, SEXP x4, SEXP x5, SE
128116
return x0;
129117
}
130118

131-
132-
133-
134-
135119
inline SEXP Rcpp_list10( SEXP x0, SEXP x1, SEXP x2, SEXP x3, SEXP x4, SEXP x5, SEXP x6, SEXP x7, SEXP x8, SEXP x9 )
136120
{
137121
PROTECT(x0);
@@ -148,10 +132,6 @@ inline SEXP Rcpp_lang10( SEXP x0, SEXP x1, SEXP x2, SEXP x3, SEXP x4, SEXP x5, S
148132
return x0;
149133
}
150134

151-
152-
153-
154-
155135
inline SEXP Rcpp_list11( SEXP x0, SEXP x1, SEXP x2, SEXP x3, SEXP x4, SEXP x5, SEXP x6, SEXP x7, SEXP x8, SEXP x9, SEXP x10 )
156136
{
157137
PROTECT(x0);
@@ -168,10 +148,6 @@ inline SEXP Rcpp_lang11( SEXP x0, SEXP x1, SEXP x2, SEXP x3, SEXP x4, SEXP x5, S
168148
return x0;
169149
}
170150

171-
172-
173-
174-
175151
inline SEXP Rcpp_list12( SEXP x0, SEXP x1, SEXP x2, SEXP x3, SEXP x4, SEXP x5, SEXP x6, SEXP x7, SEXP x8, SEXP x9, SEXP x10, SEXP x11 )
176152
{
177153
PROTECT(x0);
@@ -188,10 +164,6 @@ inline SEXP Rcpp_lang12( SEXP x0, SEXP x1, SEXP x2, SEXP x3, SEXP x4, SEXP x5, S
188164
return x0;
189165
}
190166

191-
192-
193-
194-
195167
inline SEXP Rcpp_list13( SEXP x0, SEXP x1, SEXP x2, SEXP x3, SEXP x4, SEXP x5, SEXP x6, SEXP x7, SEXP x8, SEXP x9, SEXP x10, SEXP x11, SEXP x12 )
196168
{
197169
PROTECT(x0);
@@ -208,10 +180,6 @@ inline SEXP Rcpp_lang13( SEXP x0, SEXP x1, SEXP x2, SEXP x3, SEXP x4, SEXP x5, S
208180
return x0;
209181
}
210182

211-
212-
213-
214-
215183
inline SEXP Rcpp_list14( SEXP x0, SEXP x1, SEXP x2, SEXP x3, SEXP x4, SEXP x5, SEXP x6, SEXP x7, SEXP x8, SEXP x9, SEXP x10, SEXP x11, SEXP x12, SEXP x13 )
216184
{
217185
PROTECT(x0);
@@ -228,10 +196,6 @@ inline SEXP Rcpp_lang14( SEXP x0, SEXP x1, SEXP x2, SEXP x3, SEXP x4, SEXP x5, S
228196
return x0;
229197
}
230198

231-
232-
233-
234-
235199
inline SEXP Rcpp_list15( SEXP x0, SEXP x1, SEXP x2, SEXP x3, SEXP x4, SEXP x5, SEXP x6, SEXP x7, SEXP x8, SEXP x9, SEXP x10, SEXP x11, SEXP x12, SEXP x13, SEXP x14 )
236200
{
237201
PROTECT(x0);
@@ -248,10 +212,6 @@ inline SEXP Rcpp_lang15( SEXP x0, SEXP x1, SEXP x2, SEXP x3, SEXP x4, SEXP x5, S
248212
return x0;
249213
}
250214

251-
252-
253-
254-
255215
inline SEXP Rcpp_list16( SEXP x0, SEXP x1, SEXP x2, SEXP x3, SEXP x4, SEXP x5, SEXP x6, SEXP x7, SEXP x8, SEXP x9, SEXP x10, SEXP x11, SEXP x12, SEXP x13, SEXP x14, SEXP x15 )
256216
{
257217
PROTECT(x0);
@@ -268,10 +228,6 @@ inline SEXP Rcpp_lang16( SEXP x0, SEXP x1, SEXP x2, SEXP x3, SEXP x4, SEXP x5, S
268228
return x0;
269229
}
270230

271-
272-
273-
274-
275231
inline SEXP Rcpp_list17( SEXP x0, SEXP x1, SEXP x2, SEXP x3, SEXP x4, SEXP x5, SEXP x6, SEXP x7, SEXP x8, SEXP x9, SEXP x10, SEXP x11, SEXP x12, SEXP x13, SEXP x14, SEXP x15, SEXP x16 )
276232
{
277233
PROTECT(x0);
@@ -288,10 +244,6 @@ inline SEXP Rcpp_lang17( SEXP x0, SEXP x1, SEXP x2, SEXP x3, SEXP x4, SEXP x5, S
288244
return x0;
289245
}
290246

291-
292-
293-
294-
295247
inline SEXP Rcpp_list18( SEXP x0, SEXP x1, SEXP x2, SEXP x3, SEXP x4, SEXP x5, SEXP x6, SEXP x7, SEXP x8, SEXP x9, SEXP x10, SEXP x11, SEXP x12, SEXP x13, SEXP x14, SEXP x15, SEXP x16, SEXP x17 )
296248
{
297249
PROTECT(x0);
@@ -308,10 +260,6 @@ inline SEXP Rcpp_lang18( SEXP x0, SEXP x1, SEXP x2, SEXP x3, SEXP x4, SEXP x5, S
308260
return x0;
309261
}
310262

311-
312-
313-
314-
315263
inline SEXP Rcpp_list19( SEXP x0, SEXP x1, SEXP x2, SEXP x3, SEXP x4, SEXP x5, SEXP x6, SEXP x7, SEXP x8, SEXP x9, SEXP x10, SEXP x11, SEXP x12, SEXP x13, SEXP x14, SEXP x15, SEXP x16, SEXP x17, SEXP x18 )
316264
{
317265
PROTECT(x0);
@@ -328,10 +276,6 @@ inline SEXP Rcpp_lang19( SEXP x0, SEXP x1, SEXP x2, SEXP x3, SEXP x4, SEXP x5, S
328276
return x0;
329277
}
330278

331-
332-
333-
334-
335279
inline SEXP Rcpp_list20( SEXP x0, SEXP x1, SEXP x2, SEXP x3, SEXP x4, SEXP x5, SEXP x6, SEXP x7, SEXP x8, SEXP x9, SEXP x10, SEXP x11, SEXP x12, SEXP x13, SEXP x14, SEXP x15, SEXP x16, SEXP x17, SEXP x18, SEXP x19 )
336280
{
337281
PROTECT(x0);

0 commit comments

Comments
 (0)