1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* vm_exec.h (GENTRY): GENTRY should be pointer size.

A patch by yoshidam (Yoshida Masato) [Bug #7332].



git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@37661 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
ko1 2012-11-15 13:42:27 +00:00
parent 5457b86aaf
commit 768801b020
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
Thu Nov 15 22:41:57 2012 Koichi Sasada <ko1@atdot.net>
* vm_exec.h (GENTRY): GENTRY should be pointer size.
A patch by yoshidam (Yoshida Masato) [Bug #7332].
Thu Nov 15 13:20:00 2012 Zachary Scott <zachary@zacharyscott.net>
* man/erb.1: Fix grammar and copyright dates

View file

@ -14,7 +14,7 @@
typedef long OFFSET;
typedef unsigned long lindex_t;
typedef rb_num_t GENTRY;
typedef VALUE GENTRY;
typedef rb_iseq_t *ISEQ;
#ifdef __GCC__