Skip to content
Snippets Groups Projects
Commit 0872f2fa authored by Francois Bertel's avatar Francois Bertel
Browse files

COMP:Fix warning on VS 64bit. Don't why gcc 4.3.2 didn't catch this one on a...

COMP:Fix warning on VS 64bit. Don't why gcc 4.3.2 didn't catch this one on a 64bit machine with -Wconversion on.
parent f45734ad
No related branches found
No related tags found
No related merge requests found
...@@ -348,7 +348,7 @@ static int strcspn (); ...@@ -348,7 +348,7 @@ static int strcspn ();
bool RegularExpression::compile (const char* exp) { bool RegularExpression::compile (const char* exp) {
register const char* scan; register const char* scan;
register const char* longest; register const char* longest;
register unsigned long len; register size_t len;
int flags; int flags;
if (exp == 0) { if (exp == 0) {
......
...@@ -7,4 +7,4 @@ SET(KWSYS_DATE_STAMP_YEAR 2009) ...@@ -7,4 +7,4 @@ SET(KWSYS_DATE_STAMP_YEAR 2009)
SET(KWSYS_DATE_STAMP_MONTH 03) SET(KWSYS_DATE_STAMP_MONTH 03)
# KWSys version date day component. Format is DD. # KWSys version date day component. Format is DD.
SET(KWSYS_DATE_STAMP_DAY 17) SET(KWSYS_DATE_STAMP_DAY 18)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment