Merge pull request #4275 from shuujii/add-const-to-pack_table-in-symbol.c

Add `const` to `pack_table` in `src/symbol.c`
This commit is contained in:
Yukihiro "Matz" Matsumoto
2019-02-14 20:12:03 +09:00
committed by GitHub
+2 -2
View File
@@ -29,13 +29,13 @@ sym_validate_len(mrb_state *mrb, size_t len)
}
#ifndef MRB_ENABLE_ALL_SYMBOLS
static char pack_table[] = "_abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789";
static const char pack_table[] = "_abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789";
static mrb_sym
sym_inline_pack(const char *name, uint16_t len)
{
char c;
char *p;
const char *p;
int i;
mrb_sym sym = 0;
int lower = 1;