diff options
author | Samuel Williams <[email protected]> | 2024-02-22 22:35:54 +1300 |
---|---|---|
committer | <[email protected]> | 2024-02-22 22:35:54 +1300 |
commit | 6a0b05f413931cf24c149c29cc317d2b9c623885 () | |
tree | be99200a6c26754ffbe12311003c102cbbc30e56 /eval_intern.h | |
parent | b7f5c8003639b86cea50389fac541e2565e7e694 (diff) |
Remove `SAVE_ROOT_JMPBUF` as it no longer has any effect. (#10066)
-rw-r--r-- | eval_intern.h | 8 |
1 files changed, 0 insertions, 8 deletions
@@ -95,14 +95,6 @@ extern int select_large_fdset(int, fd_set *, fd_set *, fd_set *, struct timeval #include <sys/stat.h> - -#define SAVE_ROOT_JMPBUF(th, stmt) do \ - if (true) { \ - stmt; \ - } \ - else if (th) { /* suppress unused-variable warning */ \ - } while (0) - #define EC_PUSH_TAG(ec) do { \ rb_execution_context_t * const _ec = (ec); \ struct rb_vm_tag _tag; \ |