mirror of
https://github.com/mruby/mruby
synced 2026-06-08 16:11:16 +00:00
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:
+2
-2
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user