diff options
author | Samuel Williams <samuel.williams@oriontransfer.co.nz> | 2024-02-22 22:35:54 +1300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-22 22:35:54 +1300 |
commit | 6a0b05f413931cf24c149c29cc317d2b9c623885 (patch) | |
tree | be99200a6c26754ffbe12311003c102cbbc30e56 /eval_intern.h | |
parent | b7f5c8003639b86cea50389fac541e2565e7e694 (diff) |
Remove `SAVE_ROOT_JMPBUF` as it no longer has any effect. (#10066)
Diffstat (limited to 'eval_intern.h')
-rw-r--r-- | eval_intern.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/eval_intern.h b/eval_intern.h index d008b17ca1..4ea23068bb 100644 --- a/eval_intern.h +++ b/eval_intern.h @@ -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; \ |