|
8 | 8 |
|
9 | 9 | // Generated by make_encode_sets.py
|
10 | 10 |
|
11 |
| -pub static SIMPLE: [&'static str, ..256] = [ |
| 11 | +pub static SIMPLE: [&'static str; 256] = [ |
12 | 12 | "%00", "%01", "%02", "%03", "%04", "%05", "%06", "%07",
|
13 | 13 | "%08", "%09", "%0A", "%0B", "%0C", "%0D", "%0E", "%0F",
|
14 | 14 | "%10", "%11", "%12", "%13", "%14", "%15", "%16", "%17",
|
@@ -44,7 +44,7 @@ pub static SIMPLE: [&'static str, ..256] = [
|
44 | 44 | ];
|
45 | 45 |
|
46 | 46 |
|
47 |
| -pub static QUERY: [&'static str, ..256] = [ |
| 47 | +pub static QUERY: [&'static str; 256] = [ |
48 | 48 | "%00", "%01", "%02", "%03", "%04", "%05", "%06", "%07",
|
49 | 49 | "%08", "%09", "%0A", "%0B", "%0C", "%0D", "%0E", "%0F",
|
50 | 50 | "%10", "%11", "%12", "%13", "%14", "%15", "%16", "%17",
|
@@ -80,7 +80,7 @@ pub static QUERY: [&'static str, ..256] = [
|
80 | 80 | ];
|
81 | 81 |
|
82 | 82 |
|
83 |
| -pub static DEFAULT: [&'static str, ..256] = [ |
| 83 | +pub static DEFAULT: [&'static str; 256] = [ |
84 | 84 | "%00", "%01", "%02", "%03", "%04", "%05", "%06", "%07",
|
85 | 85 | "%08", "%09", "%0A", "%0B", "%0C", "%0D", "%0E", "%0F",
|
86 | 86 | "%10", "%11", "%12", "%13", "%14", "%15", "%16", "%17",
|
@@ -116,7 +116,7 @@ pub static DEFAULT: [&'static str, ..256] = [
|
116 | 116 | ];
|
117 | 117 |
|
118 | 118 |
|
119 |
| -pub static USERINFO: [&'static str, ..256] = [ |
| 119 | +pub static USERINFO: [&'static str; 256] = [ |
120 | 120 | "%00", "%01", "%02", "%03", "%04", "%05", "%06", "%07",
|
121 | 121 | "%08", "%09", "%0A", "%0B", "%0C", "%0D", "%0E", "%0F",
|
122 | 122 | "%10", "%11", "%12", "%13", "%14", "%15", "%16", "%17",
|
@@ -152,7 +152,7 @@ pub static USERINFO: [&'static str, ..256] = [
|
152 | 152 | ];
|
153 | 153 |
|
154 | 154 |
|
155 |
| -pub static PASSWORD: [&'static str, ..256] = [ |
| 155 | +pub static PASSWORD: [&'static str; 256] = [ |
156 | 156 | "%00", "%01", "%02", "%03", "%04", "%05", "%06", "%07",
|
157 | 157 | "%08", "%09", "%0A", "%0B", "%0C", "%0D", "%0E", "%0F",
|
158 | 158 | "%10", "%11", "%12", "%13", "%14", "%15", "%16", "%17",
|
@@ -188,7 +188,7 @@ pub static PASSWORD: [&'static str, ..256] = [
|
188 | 188 | ];
|
189 | 189 |
|
190 | 190 |
|
191 |
| -pub static USERNAME: [&'static str, ..256] = [ |
| 191 | +pub static USERNAME: [&'static str; 256] = [ |
192 | 192 | "%00", "%01", "%02", "%03", "%04", "%05", "%06", "%07",
|
193 | 193 | "%08", "%09", "%0A", "%0B", "%0C", "%0D", "%0E", "%0F",
|
194 | 194 | "%10", "%11", "%12", "%13", "%14", "%15", "%16", "%17",
|
@@ -224,7 +224,7 @@ pub static USERNAME: [&'static str, ..256] = [
|
224 | 224 | ];
|
225 | 225 |
|
226 | 226 |
|
227 |
| -pub static FORM_URLENCODED: [&'static str, ..256] = [ |
| 227 | +pub static FORM_URLENCODED: [&'static str; 256] = [ |
228 | 228 | "%00", "%01", "%02", "%03", "%04", "%05", "%06", "%07",
|
229 | 229 | "%08", "%09", "%0A", "%0B", "%0C", "%0D", "%0E", "%0F",
|
230 | 230 | "%10", "%11", "%12", "%13", "%14", "%15", "%16", "%17",
|
@@ -258,5 +258,3 @@ pub static FORM_URLENCODED: [&'static str, ..256] = [
|
258 | 258 | "%F0", "%F1", "%F2", "%F3", "%F4", "%F5", "%F6", "%F7",
|
259 | 259 | "%F8", "%F9", "%FA", "%FB", "%FC", "%FD", "%FE", "%FF",
|
260 | 260 | ];
|
261 |
| - |
262 |
| - |
0 commit comments