diff options
author | Peter Zhu <[email protected]> | 2023-04-04 17:30:06 -0400 |
---|---|---|
committer | GitHub <[email protected]> | 2023-04-04 17:30:06 -0400 |
commit | 1da2e7fca35dc697d85dd91d2572ab58d08cd3bc (patch) | |
tree | 1583d534518f36da8678b4f048ed0eb5a5c00fa0 /include/ruby/internal/config.h | |
parent | 1190ec60cc3145c06cca6897b160b3e8ba2c7ecd (diff) |
[Feature #19579] Remove !USE_RVARGC code (#7655)
Remove !USE_RVARGC code
[Feature #19579]
The Variable Width Allocation feature was turned on by default in Ruby
3.2. Since then, we haven't received bug reports or backports to the
non-Variable Width Allocation code paths, so we assume that nobody is
using it. We also don't plan on maintaining the non-Variable Width
Allocation code, so we are going to remove it.
Notes
Notes:
Merged-By: maximecb <[email protected]>
Diffstat (limited to 'include/ruby/internal/config.h')
-rw-r--r-- | include/ruby/internal/config.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/include/ruby/internal/config.h b/include/ruby/internal/config.h index aa63376d7c..da070f0979 100644 --- a/include/ruby/internal/config.h +++ b/include/ruby/internal/config.h @@ -148,8 +148,4 @@ # undef RBIMPL_TEST3 #endif /* HAVE_VA_ARGS_MACRO */ -#ifndef USE_RVARGC -# define USE_RVARGC 1 -#endif - #endif /* RBIMPL_CONFIG_H */ |