| 163 | struct LongjumpException { |
| 164 | SEXP token; |
| 165 | LongjumpException(SEXP token_) : token(token_) { |
| 166 | if (internal::isLongjumpSentinel(token)) { |
| 167 | token = internal::getLongjumpToken(token); |
| 168 | } |
| 169 | } |
| 170 | }; |
| 171 | |
| 172 | #define RCPP_ADVANCED_EXCEPTION_CLASS(__CLASS__, __WHAT__) \ |
nothing calls this directly
no test coverage detected