Skip to content

Commit 5202180

Browse files
committed
correct a debug message, and one whitespace indent
1 parent 386563b commit 5202180

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

inst/include/Rcpp/vector/Vector.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,11 +88,11 @@ class Vector :
8888
update_vector();
8989
}
9090
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() )
91+
RCPP_DEBUG_2( "Vector<%d>( const char* = %s )", RTYPE, st.c_str() )
9292
update_vector();
9393
}
9494

95-
Vector( const int& siz, stored_type (*gen)(void) ) : RObject(Rf_allocVector( RTYPE, siz)) {
95+
Vector( const int& siz, stored_type (*gen)(void) ) : RObject(Rf_allocVector( RTYPE, siz)) {
9696
RCPP_DEBUG_2( "Vector<%d>( const int& siz = %s, stored_type (*gen)(void) )", RTYPE, siz )
9797
update_vector() ;
9898
iterator first = begin(), last = end() ;

0 commit comments

Comments
 (0)