From 7ebba610107e76a4bf76c8d3348a11375ebebc77 Mon Sep 17 00:00:00 2001 From: Brad King Date: Tue, 3 May 2005 14:27:39 -0400 Subject: [PATCH] COMP: Changed type of regmlen to avoid warnings when other lengths are converted to it. --- Source/kwsys/RegularExpression.hxx.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/kwsys/RegularExpression.hxx.in b/Source/kwsys/RegularExpression.hxx.in index 3cc338c10d..5b6b451c38 100644 --- a/Source/kwsys/RegularExpression.hxx.in +++ b/Source/kwsys/RegularExpression.hxx.in @@ -276,7 +276,7 @@ private: char regstart; // Internal use only char reganch; // Internal use only const char* regmust; // Internal use only - int regmlen; // Internal use only + unsigned long regmlen; // Internal use only char* program; int progsize; const char* searchstring;