Skip to content

Commit 666fa8c

Browse files
committed
use Rcpp_eval for ExpressionVector
1 parent 6812b76 commit 666fa8c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

inst/include/Rcpp/vector/Vector.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
//
22
// Vector.h: Rcpp R/C++ interface class library -- vectors
33
//
4-
// Copyright (C) 2010 - 2020 Dirk Eddelbuettel and Romain Francois
4+
// Copyright (C) 2010 - 2022 Dirk Eddelbuettel and Romain Francois
55
//
66
// This file is part of Rcpp.
77
//
@@ -1128,11 +1128,11 @@ class Vector :
11281128
public:
11291129

11301130
inline SEXP eval() const {
1131-
return Rcpp_fast_eval( Storage::get__(), R_GlobalEnv ) ;
1131+
return Rcpp_eval( Storage::get__(), R_GlobalEnv ) ;
11321132
}
11331133

11341134
inline SEXP eval(SEXP env) const {
1135-
return Rcpp_fast_eval( Storage::get__(), env );
1135+
return Rcpp_eval( Storage::get__(), env );
11361136
}
11371137

11381138

0 commit comments

Comments
 (0)