We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 29f28c4 commit dd926e4Copy full SHA for dd926e4
ChangeLog
@@ -1,3 +1,9 @@
1
+2017-04-20 James J Balamuta <balamut2@illinois.edu>
2
+
3
+ * inst/include/Rcpp/api/meat/DottedPairImpl.h: Corrected format specifier
4
+ from '%s' to '%i'.
5
6
7
2017-04-18 James J Balamuta <balamut2@illinois.edu>
8
9
* inst/include/Rcpp/vector/Matrix.h: Corrected exception throws from
inst/include/Rcpp/api/meat/DottedPairImpl.h
@@ -57,7 +57,7 @@ namespace Rcpp{
57
58
if( static_cast<R_xlen_t>(index) > ::Rf_xlength(ref.get__()) ) {
59
const char* fmt = "Dotted Pair index is out of bounds: "
60
- "[index=%s; extent=%s].";
+ "[index=%i; extent=%i].";
61
62
throw index_out_of_bounds(fmt,
63
static_cast<R_xlen_t>(index),
0 commit comments