mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
fix typo: s/POWOR/POWER/
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@44310 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
0abe1fee13
commit
6944b38f7f
1 changed files with 2 additions and 2 deletions
|
@ -6,8 +6,8 @@
|
|||
#define GLOBAL_METHOD_CACHE_SIZE 0x800
|
||||
#endif
|
||||
#define LSB_ONLY(x) ((x) & ~((x) - 1))
|
||||
#define POWOR_OF_2_P(x) ((x) == LSB_ONLY(x))
|
||||
#if !POWOR_OF_2_P(GLOBAL_METHOD_CACHE_SIZE)
|
||||
#define POWER_OF_2_P(x) ((x) == LSB_ONLY(x))
|
||||
#if !POWER_OF_2_P(GLOBAL_METHOD_CACHE_SIZE)
|
||||
# error GLOBAL_METHOD_CACHE_SIZE must be power of 2
|
||||
#endif
|
||||
#ifndef GLOBAL_METHOD_CACHE_MASK
|
||||
|
|
Loading…
Reference in a new issue