* gc.c (RVALUE): in RVALUE and RBasic, flags must be the same type.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@12614 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
6792979e98
commit
588e79f768
@ -1,3 +1,7 @@
|
|||||||
|
Mon Jun 25 20:18:44 2007 NAKAMURA Usaku <usa@ruby-lang.org>
|
||||||
|
|
||||||
|
* gc.c (RVALUE): in RVALUE and RBasic, flags must be the same type.
|
||||||
|
|
||||||
Mon Jun 25 18:02:55 2007 NAKAMURA Usaku <usa@ruby-lang.org>
|
Mon Jun 25 18:02:55 2007 NAKAMURA Usaku <usa@ruby-lang.org>
|
||||||
|
|
||||||
* ext/pty/extconf.rb: skip wince and win64.
|
* ext/pty/extconf.rb: skip wince and win64.
|
||||||
|
2
gc.c
2
gc.c
@ -95,7 +95,7 @@ int ruby_gc_debug_indent = 0;
|
|||||||
typedef struct RVALUE {
|
typedef struct RVALUE {
|
||||||
union {
|
union {
|
||||||
struct {
|
struct {
|
||||||
unsigned long flags; /* always 0 for freed obj */
|
VALUE flags; /* always 0 for freed obj */
|
||||||
struct RVALUE *next;
|
struct RVALUE *next;
|
||||||
} free;
|
} free;
|
||||||
struct RBasic basic;
|
struct RBasic basic;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user