diff options
author | Takashi Kokubun <[email protected]> | 2023-03-18 23:33:10 -0700 |
---|---|---|
committer | Takashi Kokubun <[email protected]> | 2023-03-18 23:35:42 -0700 |
commit | 32e0c97dfaa7973032e6ab93260be8eb4ad1458a (patch) | |
tree | 267a6f988cd4d3f1922f1a27c65114bbfd4c82e5 /string.c | |
parent | 106cca5111981ce30bb6f4534ff72e8c09ace162 (diff) |
RJIT: Optimize String#bytesize
Diffstat (limited to 'string.c')
-rw-r--r-- | string.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2186,7 +2186,7 @@ rb_str_length(VALUE str) * */ -static VALUE +VALUE rb_str_bytesize(VALUE str) { return LONG2NUM(RSTRING_LEN(str)); |