mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
use 0 for reserved
use 0 for rb_data_type_t::reserved instead of NULL, since its type may be changed in the future and possibly not a pointer type. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@48662 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
06bdfd0dfb
commit
e580a631be
47 changed files with 59 additions and 59 deletions
|
@ -23,7 +23,7 @@ static VALUE folerecord_inspect(VALUE self);
|
|||
static const rb_data_type_t olerecord_datatype = {
|
||||
"win32ole_record",
|
||||
{NULL, olerecord_free, olerecord_size,},
|
||||
NULL, NULL, RUBY_TYPED_FREE_IMMEDIATELY
|
||||
0, 0, RUBY_TYPED_FREE_IMMEDIATELY
|
||||
};
|
||||
|
||||
static HRESULT
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue