mirror of
https://github.com/ruby/ruby.git
synced 2025-08-15 13:39:04 +02:00
[DOC] Fix grammar: "is same as" -> "is the same as"
This commit is contained in:
parent
3d43944725
commit
3108ad7bf3
20 changed files with 33 additions and 33 deletions
2
bignum.c
2
bignum.c
|
@ -75,7 +75,7 @@ STATIC_ASSERT(sizeof_long_and_sizeof_bdigit, SIZEOF_BDIGIT % SIZEOF_LONG == 0);
|
|||
#else
|
||||
# define HOST_BIGENDIAN_P 0
|
||||
#endif
|
||||
/* (!LSHIFTABLE(d, n) ? 0 : (n)) is same as n but suppress a warning, C4293, by Visual Studio. */
|
||||
/* (!LSHIFTABLE(d, n) ? 0 : (n)) is the same as n but suppress a warning, C4293, by Visual Studio. */
|
||||
#define LSHIFTABLE(d, n) ((n) < sizeof(d) * CHAR_BIT)
|
||||
#define LSHIFTX(d, n) (!LSHIFTABLE(d, n) ? 0 : ((d) << (!LSHIFTABLE(d, n) ? 0 : (n))))
|
||||
#define CLEAR_LOWBITS(d, numbits) ((d) & LSHIFTX(~((d)*0), (numbits)))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue