1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

ext/date: constify

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@55318 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2016-06-08 01:09:21 +00:00
parent b90516659f
commit 9d83b19896
3 changed files with 5 additions and 5 deletions

View file

@ -6602,7 +6602,7 @@ tmx_m_zone(union DateData *x)
return RSTRING_PTR(m_zone(x)); return RSTRING_PTR(m_zone(x));
} }
static struct tmx_funcs tmx_funcs = { static const struct tmx_funcs tmx_funcs = {
(VALUE (*)(void *))m_real_year, (VALUE (*)(void *))m_real_year,
(int (*)(void *))m_yday, (int (*)(void *))m_yday,
(int (*)(void *))m_mon, (int (*)(void *))m_mon,

View file

@ -44,12 +44,12 @@
#define cstr2num(s) rb_cstr_to_inum(s, 10, 0) #define cstr2num(s) rb_cstr_to_inum(s, 10, 0)
#define str2num(s) rb_str_to_inum(s, 10, 0) #define str2num(s) rb_str_to_inum(s, 10, 0)
static const char *abbr_days[] = { static const char abbr_days[][4] = {
"sun", "mon", "tue", "wed", "sun", "mon", "tue", "wed",
"thu", "fri", "sat" "thu", "fri", "sat"
}; };
static const char *abbr_months[] = { static const char abbr_months[][4] = {
"jan", "feb", "mar", "apr", "may", "jun", "jan", "feb", "mar", "apr", "may", "jun",
"jul", "aug", "sep", "oct", "nov", "dec" "jul", "aug", "sep", "oct", "nov", "dec"
}; };
@ -342,7 +342,7 @@ struct zone {
int offset; int offset;
}; };
static struct zone zones_source[] = { static const struct zone zones_source[] = {
{"ut", 0*3600}, {"gmt", 0*3600}, {"est", -5*3600}, {"edt", -4*3600}, {"ut", 0*3600}, {"gmt", 0*3600}, {"est", -5*3600}, {"edt", -4*3600},
{"cst", -6*3600}, {"cdt", -5*3600}, {"mst", -7*3600}, {"mdt", -6*3600}, {"cst", -6*3600}, {"cdt", -5*3600}, {"mst", -7*3600}, {"mdt", -6*3600},
{"pst", -8*3600}, {"pdt", -7*3600}, {"pst", -8*3600}, {"pdt", -7*3600},

View file

@ -23,7 +23,7 @@ struct tmx_funcs {
}; };
struct tmx { struct tmx {
void *dat; void *dat;
struct tmx_funcs *funcs; const struct tmx_funcs *funcs;
}; };
#define tmx_attr(x) (tmx->funcs->x)(tmx->dat) #define tmx_attr(x) (tmx->funcs->x)(tmx->dat)