From f5b9acc05c6b14c3cc7a41d38f86aed4edd68a76 Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Tue, 20 Jul 2021 01:03:46 -0700 Subject: [PATCH] Added const --- utf8.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utf8.c b/utf8.c index 2ae6d1d..820b79c 100644 --- a/utf8.c +++ b/utf8.c @@ -100,7 +100,7 @@ static const uint32_t XID_Start[][2] = { {0x2B820,0x2CEA1}, {0x2CEB0,0x2EBE0}, {0x2F800,0x2FA1D}, {0x30000,0x3134A}, }; -static uint32_t XID_Continue_only[][2] = { +static const uint32_t XID_Continue_only[][2] = { {0x0030,0x0039}, {0x005F,0x005F}, {0x00B7,0x00B7}, {0x0300,0x036F}, {0x0387,0x0387}, {0x0483,0x0487}, {0x0591,0x05BD}, {0x05BF,0x05BF}, {0x05C1,0x05C2}, {0x05C4,0x05C5}, {0x05C7,0x05C7}, {0x0610,0x061A}, {0x064B,0x065F}, {0x0660,0x0669}, {0x0670,0x0670}, {0x06D6,0x06DC}, {0x06DF,0x06E4}, {0x06E7,0x06E8}, {0x06EA,0x06ED}, {0x06F0,0x06F9}, {0x0711,0x0711}, {0x0730,0x074A}, {0x07A6,0x07B0}, {0x07C0,0x07C9},