Avoid "const-correct" warning from MSVC.
This commit is contained in:
parent
9d52a9d973
commit
0440a8e72a
|
@ -3850,8 +3850,8 @@ if ((pat_patctl.control & (CTL_BINCODE|CTL_FULLBINCODE)) != 0)
|
||||||
|
|
||||||
if ((pat_patctl.control & CTL_INFO) != 0)
|
if ((pat_patctl.control & CTL_INFO) != 0)
|
||||||
{
|
{
|
||||||
const void *nametable;
|
void *nametable;
|
||||||
const uint8_t *start_bits;
|
uint8_t *start_bits;
|
||||||
BOOL match_limit_set, recursion_limit_set;
|
BOOL match_limit_set, recursion_limit_set;
|
||||||
uint32_t backrefmax, bsr_convention, capture_count, first_ctype, first_cunit,
|
uint32_t backrefmax, bsr_convention, capture_count, first_ctype, first_cunit,
|
||||||
hasbackslashc, hascrorlf, jchanged, last_ctype, last_cunit, match_empty,
|
hasbackslashc, hascrorlf, jchanged, last_ctype, last_cunit, match_empty,
|
||||||
|
|
Loading…
Reference in New Issue