From b953e60c2880b16b41fe537533d7b46247f12778 Mon Sep 17 00:00:00 2001 From: Karl Williamson Date: Sat, 12 Feb 2011 13:38:53 -0700 Subject: [PATCH] Silence win32 smoke compiler warning --- toke.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/toke.c b/toke.c index 8dadf61..113632e 100644 --- a/toke.c +++ b/toke.c @@ -2607,8 +2607,8 @@ S_scan_const(pTHX_ char *start) register char *d = SvPVX(sv); /* destination for copies */ bool dorange = FALSE; /* are we in a translit range? */ bool didrange = FALSE; /* did we just finish a range? */ - I32 has_utf8 = FALSE; /* Output constant is UTF8 */ - I32 this_utf8 = UTF; /* Is the source string assumed + bool has_utf8 = FALSE; /* Output constant is UTF8 */ + bool this_utf8 = cBOOL(UTF); /* Is the source string assumed to be UTF8? But, this can show as true when the source isn't utf8, as for example -- 2.7.4