зеркало из https://github.com/github/ruby.git
* node.h (nd_type): cast the value to int.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@3002 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
Родитель
2bda19cc0d
Коммит
20a8fa174c
|
@ -1,3 +1,7 @@
|
|||
Sat Oct 26 10:11:47 2002 Akinori MUSHA <knu@iDaemons.org>
|
||||
|
||||
* node.h (nd_type): cast the value to int.
|
||||
|
||||
Sat Oct 26 04:27:35 2002 Akinori MUSHA <knu@iDaemons.org>
|
||||
|
||||
* ext/dbm/dbm.c (fdbm_indexes, fdbm_select): add a missing
|
||||
|
|
2
node.h
2
node.h
|
@ -154,7 +154,7 @@ typedef struct RNode {
|
|||
|
||||
#define RNODE(obj) (R_CAST(RNode)(obj))
|
||||
|
||||
#define nd_type(n) (((RNODE(n))->flags>>FL_USHIFT)&0xff)
|
||||
#define nd_type(n) ((int)(((RNODE(n))->flags>>FL_USHIFT)&0xff))
|
||||
#define nd_set_type(n,t) \
|
||||
RNODE(n)->flags=((RNODE(n)->flags&~FL_UMASK)|(((t)<<FL_USHIFT)&FL_UMASK))
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче