aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-04-24 02:10:09 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-04-24 02:10:09 +0000
commit84f4550341264fb202c2d419936246347857d5e5 (patch)
tree3bd6ffebb88532afb6af0f7a339de3dc0f6a18d5
parentcc0ffc55172245554b472022a5d6f32bffb6b289 (diff)
downloadruby-84f4550341264fb202c2d419936246347857d5e5.tar.gz
regexec.c: constify
* regexec.c (match_at): constify oplabels. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@54741 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--regexec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/regexec.c b/regexec.c
index 0c379aa678..f52e55f879 100644
--- a/regexec.c
+++ b/regexec.c
@@ -1372,7 +1372,7 @@ match_at(regex_t* reg, const UChar* str, const UChar* end,
#define NEXT sprev = sbegin; JUMP
#define JUMP goto *oplabels[*p++]
- static void *oplabels[] = {
+ static const void *oplabels[] = {
&&L_OP_FINISH, /* matching process terminator (no more alternative) */
&&L_OP_END, /* pattern code terminator (success end) */