From 0ae8dd168e4529828018996f0af288320f4de0ad Mon Sep 17 00:00:00 2001 From: normal Date: Mon, 25 Aug 2014 02:24:10 +0000 Subject: rb_iseq_location_t: change first_lineno type to VALUE Nearly all current uses of iseq->location.first_lineno are as a VALUE, not a size_t. The only exception was the experimental (and currently unused) rb_iseq_build_for_ruby2cext function. * vm_core.h (rb_iseq_location_t): change first_lineno type to VALUE * iseq.c (rb_iseq_build_for_ruby2cext): update based on argument git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@47269 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- vm_core.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'vm_core.h') diff --git a/vm_core.h b/vm_core.h index ff8bf0ef20..7bf971b9a5 100644 --- a/vm_core.h +++ b/vm_core.h @@ -184,7 +184,7 @@ typedef struct rb_iseq_location_struct { const VALUE absolute_path; const VALUE base_label; const VALUE label; - size_t first_lineno; + VALUE first_lineno; /* TODO: may be unsigned short */ } rb_iseq_location_t; struct rb_iseq_struct; -- cgit v1.2.3