diff options
| author | Nobuyoshi Nakada <nobu@ruby-lang.org> | 2025-11-05 02:24:32 +0900 |
|---|---|---|
| committer | git <svn-admin@ruby-lang.org> | 2025-11-04 18:29:37 +0000 |
| commit | 36cd985db4609b87575b08b9bff17504266de28b (patch) | |
| tree | e82eb8820f7e115d04ebefcf29377dc100635959 | |
| parent | b6f00701cbcee1ca791384b571e1e4057749834a (diff) | |
[ruby/strscan] Remove no longer used variable
Since https://github.com/ruby/strscan/commit/92961cde2b42.
https://github.com/ruby/strscan/commit/911f9c682a
| -rw-r--r-- | ext/strscan/strscan.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/ext/strscan/strscan.c b/ext/strscan/strscan.c index bc543f62b1..d1b5c5e1d3 100644 --- a/ext/strscan/strscan.c +++ b/ext/strscan/strscan.c @@ -30,7 +30,6 @@ extern size_t onig_region_memsize(const struct re_registers *regs); static VALUE StringScanner; static VALUE ScanError; -static ID id_byteslice; static int usascii_encindex, utf8_encindex, binary_encindex; @@ -2287,8 +2286,6 @@ Init_strscan(void) ID id_scanerr = rb_intern("ScanError"); VALUE tmp; - id_byteslice = rb_intern("byteslice"); - usascii_encindex = rb_usascii_encindex(); utf8_encindex = rb_utf8_encindex(); binary_encindex = rb_ascii8bit_encindex(); |
