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 a8b50f1 commit bd63c6cCopy full SHA for bd63c6c
inst/include/Rcpp/RObject.h
@@ -30,7 +30,7 @@ namespace Rcpp{
30
/**
31
* default constructor. uses R_NilValue
32
*/
33
- RObject_Impl() ;
+ RObject_Impl() {};
34
35
RCPP_GENERATE_CTOR_ASSIGN(RObject_Impl)
36
inst/include/Rcpp/vector/Vector.h
@@ -239,7 +239,7 @@ class Vector :
239
}
240
241
Vector& sort(){
242
- typename traits::storage_type<RTYPE>* start = internal::r_vector_start<RTYPE>( Storage::get__() ) ;
+ typename traits::storage_type<RTYPE>::type* start = internal::r_vector_start<RTYPE>( Storage::get__() ) ;
243
std::sort(
244
start, start + size(),
245
typename traits::comparator_type<RTYPE>::type()
0 commit comments