summaryrefslogtreecommitdiffhomepage
path: root/include
diff options
context:
space:
mode:
authorYukihiro "Matz" Matsumoto <[email protected]>2014-09-15 01:48:08 +0900
committerYukihiro "Matz" Matsumoto <[email protected]>2014-09-15 01:48:08 +0900
commit6057b2e378b0f95f0cb6d0c69d8879a23393fe80 (patch)
tree080aafbf2c0d113da35f03d277f41e505264d5b3 /include
parent48c5321dca85025b8b11e43c8db2726fccb45b9d (diff)
downloadmruby-6057b2e378b0f95f0cb6d0c69d8879a23393fe80.tar.gz
mruby-6057b2e378b0f95f0cb6d0c69d8879a23393fe80.zip
change mrb_sym type from uint16_t to uint32_t
Diffstat (limited to 'include')
-rw-r--r--include/mruby.h1
-rw-r--r--include/mruby/value.h2
2 files changed, 1 insertions, 2 deletions
diff --git a/include/mruby.h b/include/mruby.h
index c45925844..480080e8b 100644
--- a/include/mruby.h
+++ b/include/mruby.h
@@ -161,7 +161,6 @@ typedef struct mrb_state {
mrb_bool gc_full:1;
mrb_bool is_generational_gc_mode:1;
mrb_bool out_of_memory:1;
- mrb_bool symbol_table_overflow:1;
size_t majorgc_old_threshold;
struct alloca_header *mems;
diff --git a/include/mruby/value.h b/include/mruby/value.h
index 859687ffc..f85cdd644 100644
--- a/include/mruby/value.h
+++ b/include/mruby/value.h
@@ -7,7 +7,7 @@
#ifndef MRUBY_VALUE_H
#define MRUBY_VALUE_H
-typedef uint16_t mrb_sym;
+typedef uint32_t mrb_sym;
typedef uint8_t mrb_bool;
struct mrb_state;