COMP: Changed type of regmlen to avoid warnings when other lengths are converted to it.
This commit is contained in:
parent
7dcb42de21
commit
7ebba61010
|
@ -276,7 +276,7 @@ private:
|
||||||
char regstart; // Internal use only
|
char regstart; // Internal use only
|
||||||
char reganch; // Internal use only
|
char reganch; // Internal use only
|
||||||
const char* regmust; // Internal use only
|
const char* regmust; // Internal use only
|
||||||
int regmlen; // Internal use only
|
unsigned long regmlen; // Internal use only
|
||||||
char* program;
|
char* program;
|
||||||
int progsize;
|
int progsize;
|
||||||
const char* searchstring;
|
const char* searchstring;
|
||||||
|
|
Loading…
Reference in New Issue