Fix typo that gave compiler error when JIT not supported.
This commit is contained in:
parent
d243224a60
commit
42f9a5e9e7
|
@ -130,6 +130,8 @@ RunTest (see 4 above).
|
||||||
|
|
||||||
32. Implemented the PCRE2_NO_JIT option for pcre2_match().
|
32. Implemented the PCRE2_NO_JIT option for pcre2_match().
|
||||||
|
|
||||||
|
33. Fix typo that gave a compiler error when JIT not supported.
|
||||||
|
|
||||||
|
|
||||||
Version 10.21 12-January-2016
|
Version 10.21 12-January-2016
|
||||||
-----------------------------
|
-----------------------------
|
||||||
|
|
|
@ -11440,7 +11440,7 @@ Returns: 0: success or (*NOJIT) was used
|
||||||
(PCRE2_JIT_COMPLETE|PCRE2_JIT_PARTIAL_SOFT|PCRE2_JIT_PARTIAL_HARD)
|
(PCRE2_JIT_COMPLETE|PCRE2_JIT_PARTIAL_SOFT|PCRE2_JIT_PARTIAL_HARD)
|
||||||
|
|
||||||
PCRE2_EXP_DEFN int PCRE2_CALL_CONVENTION
|
PCRE2_EXP_DEFN int PCRE2_CALL_CONVENTION
|
||||||
pcre2_jit_compile(pcre2_code *code, sljit_u32 options)
|
pcre2_jit_compile(pcre2_code *code, uint32_t options)
|
||||||
{
|
{
|
||||||
#ifndef SUPPORT_JIT
|
#ifndef SUPPORT_JIT
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue