diff options
author | Francois Bertel <francois.bertel@kitware.com> | 2009-03-19 13:09:33 (GMT) |
---|---|---|
committer | Francois Bertel <francois.bertel@kitware.com> | 2009-03-19 13:09:33 (GMT) |
commit | 675b76d931e53dd5f951391aab33558333d78a0b (patch) | |
tree | f7d6afe3a1422122d08a1909c9a92c68fed9b930 /Source/kwsys/RegularExpression.hxx.in | |
parent | b74c0a03e5eed37bdeece88a74f06412457f03a8 (diff) | |
download | CMake-675b76d931e53dd5f951391aab33558333d78a0b.zip CMake-675b76d931e53dd5f951391aab33558333d78a0b.tar.gz CMake-675b76d931e53dd5f951391aab33558333d78a0b.tar.bz2 |
COMP:Fixed VS 64-bit warning C4267 line 432 of RegularExpression.cxx
Diffstat (limited to 'Source/kwsys/RegularExpression.hxx.in')
-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 9af53d3..a7d0b50 100644 --- a/Source/kwsys/RegularExpression.hxx.in +++ b/Source/kwsys/RegularExpression.hxx.in @@ -281,7 +281,7 @@ private: char regstart; // Internal use only char reganch; // Internal use only const char* regmust; // Internal use only - unsigned long regmlen; // Internal use only + size_t regmlen; // Internal use only char* program; int progsize; const char* searchstring; |