File tree Expand file tree Collapse file tree 2 files changed +8
-2
lines changed
inst/include/Rcpp/api/meat Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Original file line number Diff line number Diff line change 1+ 2014-01-19 Kevin Ushey <kevinushey@gmail.com>
2+
3+ * inst/include/Rcpp/api/meat/Vector.h: Add missing UNPROTECT in
4+ push_back_name__impl
5+
162014-01-18 Kevin Ushey <kevinushey@gmail.com>
27
3- * inst/unitTests/runit.S4.R: Add a test for ctor from slot proxy
4- * inst/unitTests/cpp/S4.cpp: Add a test for ctor from slot proxy
8+ * inst/unitTests/runit.S4.R: Add a test for ctor from slot proxy
9+ * inst/unitTests/cpp/S4.cpp: Add a test for ctor from slot proxy
510 * inst/include/Rcpp/vector/Vector.h: Add missing r_cast to vector
611 ctor from proxy
712
Original file line number Diff line number Diff line change @@ -368,6 +368,7 @@ namespace Rcpp{
368368 *target_it = *it ;
369369 SET_STRING_ELT ( newnames, i , dummy );
370370 }
371+ UNPROTECT (1 );
371372 } else {
372373 for ( ; it < this_end; ++it, ++target_it, i++ ){
373374 *target_it = *it ;
You can’t perform that action at this time.
0 commit comments