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 8e41c81 commit e366353Copy full SHA for e366353
inst/include/Rcpp/exceptions.h
@@ -124,8 +124,6 @@ namespace Rcpp{
124
#undef RCPP_SIMPLE_EXCEPTION_CLASS
125
126
127
-} // namespace Rcpp
128
-
129
namespace internal {
130
131
inline SEXP nth(SEXP s, int n) {
@@ -153,6 +151,8 @@ namespace internal {
153
151
}
154
152
155
+} // namespace Rcpp
+
156
inline SEXP get_last_call(){
157
SEXP sys_calls_symbol = Rf_install("sys.calls");
158
@@ -164,7 +164,7 @@ inline SEXP get_last_call(){
164
while(CDR(cur) != R_NilValue) {
165
SEXP expr = CAR(cur);
166
167
- if (internal::is_Rcpp_eval_call(expr)) {
+ if (Rcpp::internal::is_Rcpp_eval_call(expr)) {
168
break;
169
170
prev = cur;
0 commit comments