Skip to content

Commit 2119978

Browse files
committed
revert 'full' to 'Full' for C++11 capability
1 parent c062c23 commit 2119978

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

inst/unitTests/runit.InternalFunctionCPP11.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
.runThisTest <- Sys.getenv("RunAllRcppTests") == "yes"
2222

23-
if( .runThisTest && Rcpp:::capabilities()[["full C++11 support"]] ) {
23+
if( .runThisTest && Rcpp:::capabilities()[["Full C++11 support"]] ) {
2424

2525
.tearDown <- function(){
2626
gc()

src/api.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,7 @@ SEXP rcpp_capabilities() {
233233
SET_STRING_ELT(names, 8, Rf_mkChar("long long"));
234234
SET_STRING_ELT(names, 9, Rf_mkChar("C++0x unordered maps"));
235235
SET_STRING_ELT(names, 10, Rf_mkChar("C++0x unordered sets"));
236-
SET_STRING_ELT(names, 11, Rf_mkChar("full C++11 support")); // switched from 'Full' to 'full'
236+
SET_STRING_ELT(names, 11, Rf_mkChar("Full C++11 support"));
237237
SET_STRING_ELT(names, 12, Rf_mkChar("new date(time) vectors"));
238238
Rf_setAttrib(cap, R_NamesSymbol, names);
239239
return cap;

0 commit comments

Comments
 (0)