File tree Expand file tree Collapse file tree 2 files changed +1
-6
lines changed
Expand file tree Collapse file tree 2 files changed +1
-6
lines changed Original file line number Diff line number Diff line change @@ -43,11 +43,6 @@ namespace Rcpp {
4343 return interruptedError;
4444 }
4545
46- // Interrupt R's execution by jumping to the top-level
47- inline void jumpToTop () {
48- Rf_jump_to_toplevel ();
49- }
50-
5146 } // namespace internal
5247
5348 // Helper function to check for interrupts. This is invoked within
Original file line number Diff line number Diff line change 3131#endif
3232
3333#ifndef VOID_END_RCPP
34- #define VOID_END_RCPP } catch ( Rcpp::internal::InterruptedException& __ex__ ) { Rcpp::internal::jumpToTop (); } catch ( std::exception& __ex__ ){ forward_exception_to_r ( __ex__ ) ; } catch (...){ ::Rf_error ( " c++ exception (unknown reason)" ) ; }
34+ #define VOID_END_RCPP } catch ( Rcpp::internal::InterruptedException& __ex__ ) { Rf_jump_to_toplevel (); } catch ( std::exception& __ex__ ){ forward_exception_to_r ( __ex__ ) ; } catch (...){ ::Rf_error ( " c++ exception (unknown reason)" ) ; }
3535#endif
3636
3737#ifndef END_RCPP
You can’t perform that action at this time.
0 commit comments