File tree Expand file tree Collapse file tree 3 files changed +10
-3
lines changed
Expand file tree Collapse file tree 3 files changed +10
-3
lines changed Original file line number Diff line number Diff line change 1+ 2018-01-09 Iñaki Ucar <
[email protected] >
2+
3+ * inst/include/Rcpp/vector/proxy.h: Improve support for NVCC, the CUDA
4+ compiler (pull request #798, fixed issue #797)
5+
162018-01-06 Kendon Bell <
[email protected] >
27
38 * src/api.cpp: Allow for compilation on ANDROID
Original file line number Diff line number Diff line change 3434 \item Overly picky \emph {fall - through } warnings by gcc - 7 regarding
3535 \code {switch } statements are now pre - empted (Kirill in \ghpr {792 }).
3636 \item Permit compilation on ANDROID (Kenny Bell in \ghpr {796 }).
37+ \item Improve support for NVCC , the CUDA compiler (I ñaki Ucar in
38+ \ghpr {798 } addressing \ghit {797 }).
3739 }
3840 \item Changes in Rcpp Attributes :
3941 \itemize {
Original file line number Diff line number Diff line change @@ -100,11 +100,11 @@ namespace internal{
100100 return *this ;
101101 }
102102
103- operator char * (){
103+ operator char * () const {
104104 return get () ;
105105 }
106106
107- operator SEXP (){
107+ operator SEXP () const {
108108 return ::Rf_mkString (get ()) ;
109109 }
110110
@@ -125,7 +125,7 @@ namespace internal{
125125 parent.push_back ( rhs, name );
126126 }
127127 }
128- char * get (){
128+ char * get () const {
129129 return parent[ parent.offset (name) ];
130130 }
131131
You can’t perform that action at this time.
0 commit comments