diff options
| author | John Hawthorn <john@hawthorn.email> | 2026-02-11 13:30:26 -0800 |
|---|---|---|
| committer | John Hawthorn <john@hawthorn.email> | 2026-02-11 14:01:30 -0800 |
| commit | 9aa30b512f12ac3e298f7b971cdbd0e2cae8fc68 (patch) | |
| tree | 3538d54c2a7cf24709c622c6b8368f90a4f7c514 | |
| parent | b746efc1fb46074ae659b4af0f9114aae9540e41 (diff) | |
Revert "Fix check in cc_is_active"
This reverts commit 9d8af87528be09bd4f846592e4922228288e3a10.
| -rw-r--r-- | iseq.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -343,7 +343,7 @@ static bool cc_is_active(const struct rb_callcache *cc, bool reference_updating) { if (cc) { - if (cc == rb_vm_empty_cc() || cc == rb_vm_empty_cc_for_super()) { + if (cc == rb_vm_empty_cc() || rb_vm_empty_cc_for_super()) { return false; } |
