diff options
author | Nobuyoshi Nakada <[email protected]> | 2023-02-01 22:45:45 +0900 |
---|---|---|
committer | Nobuyoshi Nakada <[email protected]> | 2023-02-01 22:45:45 +0900 |
commit | 62146d3ceece27a2dc7e0e945d292a4d28e82beb (patch) | |
tree | 2779df2a948c4986ee2268fc1eaf56fa8fb57f3d /ruby.c | |
parent | 9445a14d313346dea3379495000b8f4637250479 (diff) |
Fix a typo
Diffstat (limited to 'ruby.c')
-rw-r--r-- | ruby.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1798,7 +1798,7 @@ copy_str(VALUE str, rb_encoding *enc, bool intern) return rb_enc_interned_str(RSTRING_PTR(str), RSTRING_LEN(str), enc); } -#ifdef USE_YJIT +#if USE_YJIT // Check that an environment variable is set to a truthy value static bool env_var_truthy(const char *name) |