Skip to content

Commit 194d172

Browse files
committed
merging ChangeLog with #342 by Florian
2 parents 82516b9 + 000862e commit 194d172

File tree

3 files changed

+12
-8
lines changed

3 files changed

+12
-8
lines changed

ChangeLog

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
1+
2015-08-24 Dirk Eddelbuettel <[email protected]>
2+
3+
* vignettes/Rcpp.bib: Updated R / R Core references
4+
15
2015-08-19 Florian Plaza Oñate <[email protected]>
2-
* inst/include/Rcpp/vector/Vector.h: Add 'at' methods which implement
6+
* inst/include/Rcpp/vector/Vector.h: Add 'at' methods which implement
37
accessors with bounds cheking (pull request #342, fixes issue #341)
48
* inst/include/Rcpp/vector/Matrix.h: Ditto
59
* inst/unitTests/cpp/Vector.cpp: Add unit tests for at acessors

inst/include/Rcpp/Benchmark/Timer.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ namespace Rcpp{
110110
}
111111

112112
operator SEXP() const {
113-
R_xlen_t n = data.size();
113+
size_t n = data.size();
114114
NumericVector out(n);
115115
CharacterVector names(n);
116116
for (size_t i=0; i<n; i++) {

vignettes/Rcpp.bib

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -468,17 +468,17 @@ @manual{R:Administration
468468
author = RCoreTeam,
469469
organization = RFoundation,
470470
address = {Vienna, Austria},
471-
year = 2013,
471+
year = 2015,
472472
title = "R Installation and Administration",
473-
note = {{ISBN} 3-900051-09-7},
473+
annote = {{ISBN} 3-900051-09-7},
474474
url = manuals # "R-admin.html"
475475
}
476476

477477
@manual{R:Extensions,
478478
author = RCoreTeam,
479479
organization = RFoundation,
480480
address = {Vienna, Austria},
481-
year = 2012,
481+
year = 2015,
482482
title = "Writing R extensions",
483483
annote = {{ISBN} 3-900051-11-9},
484484
url = manuals # "R-exts.html"
@@ -488,7 +488,7 @@ @manual{R:Internals
488488
author = RCoreTeam,
489489
organization = RFoundation,
490490
address = {Vienna, Austria},
491-
year = 2013,
491+
year = 2015,
492492
title = "R internals",
493493
annote = {{ISBN} 3-900051-14-3},
494494
url = manuals # "R-ints.html"
@@ -500,15 +500,15 @@ @manual{R:Main
500500
author = RCoreTeam,
501501
organization = RFoundation,
502502
address = {Vienna, Austria},
503-
year = 2013,
503+
year = 2015,
504504
url = {http://www.R-project.org/},
505505
}
506506

507507
@manual{R:Language,
508508
author = RCoreTeam,
509509
organization = RFoundation,
510510
address = {Vienna, Austria},
511-
year = 2013,
511+
year = 2015,
512512
title = "R language",
513513
annote = {{ISBN} 3-900051-13-5},
514514
url = manuals # "R-lang.html"

0 commit comments

Comments
 (0)