diff options
author | Peter Zhu <peter@peterzhu.ca> | 2022-01-07 11:52:47 -0500 |
---|---|---|
committer | Peter Zhu <peter@peterzhu.ca> | 2022-01-07 13:27:13 -0500 |
commit | c365c5921ea26e31c03a85b01ff4c04629abfc10 (patch) | |
tree | 0c52de54f541566938c682a05d25bc11ae8b2b0d /include/ruby | |
parent | a1bef7c2ef3fc744a68574b0f9198e2e4d69ab63 (diff) | |
download | ruby-c365c5921ea26e31c03a85b01ff4c04629abfc10.tar.gz |
Enable Variable Width Allocation by default
Diffstat (limited to 'include/ruby')
-rw-r--r-- | include/ruby/internal/config.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/ruby/internal/config.h b/include/ruby/internal/config.h index 51f863fc29..0c434e5b05 100644 --- a/include/ruby/internal/config.h +++ b/include/ruby/internal/config.h @@ -147,7 +147,7 @@ #endif /* HAVE_VA_ARGS_MACRO */ #ifndef USE_RVARGC -# define USE_RVARGC 0 +# define USE_RVARGC 1 #endif #endif /* RBIMPL_CONFIG_H */ |