1470 |
|
|
1471 |
switch (c) |
switch (c) |
1472 |
{ |
{ |
1473 |
/* Check for quantifiers after a class */ |
/* Check for quantifiers after a class. XCLASS is used for classes that |
1474 |
|
cannot be represented just by a bit map. This includes negated single |
1475 |
|
high-valued characters. The length in _pcre_OP_lengths[] is zero; the |
1476 |
|
actual length is stored in the compiled code, so we must update "code" |
1477 |
|
here. */ |
1478 |
|
|
1479 |
#ifdef SUPPORT_UTF8 |
#ifdef SUPPORT_UTF8 |
1480 |
case OP_XCLASS: |
case OP_XCLASS: |
1481 |
ccode = code + GET(code, 1); |
ccode = code += GET(code, 1); |
1482 |
goto CHECK_CLASS_REPEAT; |
goto CHECK_CLASS_REPEAT; |
1483 |
#endif |
#endif |
1484 |
|
|