diff options
author | Brad King <brad.king@kitware.com> | 2005-05-03 18:27:39 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2005-05-03 18:27:39 (GMT) |
commit | 7ebba610107e76a4bf76c8d3348a11375ebebc77 (patch) | |
tree | 3385e1973e4f62523eab647292a384d27f5f1cbc | |
parent | 7dcb42de21a5667bdddb507400d0f63047c1dcf2 (diff) | |
download | CMake-7ebba610107e76a4bf76c8d3348a11375ebebc77.zip CMake-7ebba610107e76a4bf76c8d3348a11375ebebc77.tar.gz CMake-7ebba610107e76a4bf76c8d3348a11375ebebc77.tar.bz2 |
COMP: Changed type of regmlen to avoid warnings when other lengths are converted to it.
-rw-r--r-- | Source/kwsys/RegularExpression.hxx.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/kwsys/RegularExpression.hxx.in b/Source/kwsys/RegularExpression.hxx.in index 3cc338c..5b6b451 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; |