summaryrefslogtreecommitdiff
path: root/debug.c
diff options
context:
space:
mode:
authoryugui <yugui@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-08-08 15:34:36 +0000
committeryugui <yugui@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-08-08 15:34:36 +0000
commit392762807fcd38a022cf68a8643b907c90f35602 (patch)
treeb4530c86a1c5f7fcd0739819bdaa23ed0e203c0e /debug.c
parent48500e49b74882605d6d19f3263442c07b4de188 (diff)
merges r24407 from trunk into ruby_1_9_1.
-- * debug.c (ruby_dummy_gdb_enums): made public. [ruby-dev:39001] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_9_1@24470 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'debug.c')
-rw-r--r--debug.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/debug.c b/debug.c
index 265e864aec..f1c32b7431 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;