diff options
author | Samuel Williams <[email protected]> | 2022-05-26 15:06:21 +1200 |
---|---|---|
committer | Samuel Williams <[email protected]> | 2022-05-26 16:51:53 +1200 |
commit | 2556e15d7520913119175c8166b1f9d17eb33415 (patch) | |
tree | 2afe420ef85b7ae033e49b278fe9e2ba98a76449 | |
parent | 946e3bbdc293693e667ad056885a27e6955a895f (diff) |
Remove unnecessary ignore warnings.
Notes
Notes:
Merged: https://github.com/ruby/ruby/pull/5947
-rw-r--r-- | cont.c | 6 |
1 files changed, 1 insertions, 5 deletions
@@ -1266,10 +1266,7 @@ show_vm_pcs(const rb_control_frame_t *cfp, } } #endif -COMPILER_WARNING_PUSH -#ifdef __clang__ -COMPILER_WARNING_IGNORED(-Wduplicate-decl-specifier) -#endif + static VALUE cont_capture(volatile int *volatile stat) { @@ -1334,7 +1331,6 @@ cont_capture(volatile int *volatile stat) return contval; } } -COMPILER_WARNING_POP static inline void cont_restore_thread(rb_context_t *cont) |