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 350906a commit b71a580Copy full SHA for b71a580
ChangeLog
@@ -1,3 +1,8 @@
1
+2013-10-28 Romain Francois <romain@r-enthusiasts.com>
2
+
3
+ * include/Rcpp/protection/Armor.h : Armor::operator SEXP has to be const
4
+ for it to work properly with wrap.
5
6
2013-10-27 Dirk Eddelbuettel <edd@debian.org>
7
8
* DESCRIPTION: Release 0.10.6
inst/include/Rcpp/protection/Armor.h
@@ -30,7 +30,7 @@ namespace Rcpp {
30
31
template <typename U> Armor( U x );
32
33
- inline operator SEXP(){
+ inline operator SEXP() const {
34
return data ;
35
}
36
0 commit comments