diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2007-07-25 13:22:19 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2007-07-25 13:22:19 (GMT) |
commit | f4ac0f8373aeb96aae4cd24359586bf1a18c7f7b (patch) | |
tree | e79b035fe11d0db5f462d04a7409b77fbae7f166 /Source/cmXMLParser.h | |
parent | ef1e66e92f2b4ebc10d9cdc62a951cf88620dcf9 (diff) | |
download | CMake-f4ac0f8373aeb96aae4cd24359586bf1a18c7f7b.zip CMake-f4ac0f8373aeb96aae4cd24359586bf1a18c7f7b.tar.gz CMake-f4ac0f8373aeb96aae4cd24359586bf1a18c7f7b.tar.bz2 |
STYLE: fix compiler warning
Diffstat (limited to 'Source/cmXMLParser.h')
-rw-r--r-- | Source/cmXMLParser.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmXMLParser.h b/Source/cmXMLParser.h index 2c34442..5568920 100644 --- a/Source/cmXMLParser.h +++ b/Source/cmXMLParser.h @@ -52,7 +52,7 @@ public: * them. */ virtual int InitializeParser(); - virtual int ParseChunk(const char* inputString, unsigned int length); + virtual int ParseChunk(const char* inputString, std::string::size_type length); virtual int CleanupParser(); protected: |