From af898174eb0316c0ab650ce9dc65db59b2f958d3 Mon Sep 17 00:00:00 2001 From: yugui Date: Sat, 8 Aug 2009 15:34:36 +0000 Subject: merges r24407 from trunk into ruby_1_9_1. -- * debug.c (ruby_dummy_gdb_enums): made public. [ruby-dev:39001] git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_9_1@24470 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- debug.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'debug.c') diff --git a/debug.c b/debug.c index 265e864ae..f1c32b743 100644 --- a/debug.c +++ b/debug.c @@ -17,7 +17,7 @@ #include "vm_core.h" /* for gdb */ -static const union { +const union { enum ruby_special_consts special_consts; enum ruby_value_type value_type; enum ruby_tag_type tag_type; @@ -65,7 +65,7 @@ static const union { RUBY_NODE_LMASK = NODE_LMASK, RUBY_NODE_FL_NEWLINE = NODE_FL_NEWLINE } various; -} dummy_gdb_enums; +} ruby_dummy_gdb_enums; const VALUE RUBY_FL_USER19 = FL_USER19; -- cgit