Skip to content

Commit d1a766a

Browse files
committed
move EvalCall out of anonymous namespace (some versions of gcc will complain about this)
1 parent b058f9c commit d1a766a

File tree

1 file changed

+6
-8
lines changed

1 file changed

+6
-8
lines changed

inst/include/Rcpp/api/meat/Rcpp_eval.h

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -22,14 +22,12 @@
2222

2323
namespace Rcpp{
2424

25-
namespace {
26-
struct EvalCall {
27-
SEXP expr_;
28-
SEXP env;
29-
SEXP result;
30-
std::string error_message;
31-
};
32-
} // anonymous namespace
25+
struct EvalCall {
26+
SEXP expr_;
27+
SEXP env;
28+
SEXP result;
29+
std::string error_message;
30+
};
3331

3432
inline void Rcpp_eval(void* data) {
3533

0 commit comments

Comments
 (0)