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 6812b76 commit 666fa8cCopy full SHA for 666fa8c
inst/include/Rcpp/vector/Vector.h
@@ -1,7 +1,7 @@
1
//
2
// Vector.h: Rcpp R/C++ interface class library -- vectors
3
4
-// Copyright (C) 2010 - 2020 Dirk Eddelbuettel and Romain Francois
+// Copyright (C) 2010 - 2022 Dirk Eddelbuettel and Romain Francois
5
6
// This file is part of Rcpp.
7
@@ -1128,11 +1128,11 @@ class Vector :
1128
public:
1129
1130
inline SEXP eval() const {
1131
- return Rcpp_fast_eval( Storage::get__(), R_GlobalEnv ) ;
+ return Rcpp_eval( Storage::get__(), R_GlobalEnv ) ;
1132
}
1133
1134
inline SEXP eval(SEXP env) const {
1135
- return Rcpp_fast_eval( Storage::get__(), env );
+ return Rcpp_eval( Storage::get__(), env );
1136
1137
1138
0 commit comments