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 386563b commit 5202180Copy full SHA for 5202180
inst/include/Rcpp/vector/Vector.h
@@ -88,11 +88,11 @@ class Vector :
88
update_vector();
89
}
90
Vector( const char* st ) : RObject( internal::vector_from_string<RTYPE>(st) ){
91
- RCPP_DEBUG_2( "Vector<%d>( const std::string& = %s )", RTYPE, st.c_str() )
+ RCPP_DEBUG_2( "Vector<%d>( const char* = %s )", RTYPE, st.c_str() )
92
93
94
95
- Vector( const int& siz, stored_type (*gen)(void) ) : RObject(Rf_allocVector( RTYPE, siz)) {
+ Vector( const int& siz, stored_type (*gen)(void) ) : RObject(Rf_allocVector( RTYPE, siz)) {
96
RCPP_DEBUG_2( "Vector<%d>( const int& siz = %s, stored_type (*gen)(void) )", RTYPE, siz )
97
update_vector() ;
98
iterator first = begin(), last = end() ;
0 commit comments