diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2007-07-26 18:36:06 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2007-07-26 18:36:06 (GMT) |
commit | 3f00d3cbc9f24b58f2a2b446f6ca630633c1a0c8 (patch) | |
tree | 125a8ee4056a29b2a289f18c5c2b7c05b5b47da8 /Source/cmXMLParser.cxx | |
parent | d0561a3d29d0b1322248bf837d807869e9a06031 (diff) | |
download | CMake-3f00d3cbc9f24b58f2a2b446f6ca630633c1a0c8.zip CMake-3f00d3cbc9f24b58f2a2b446f6ca630633c1a0c8.tar.gz CMake-3f00d3cbc9f24b58f2a2b446f6ca630633c1a0c8.tar.bz2 |
ENH: fix warning on win64
Diffstat (limited to 'Source/cmXMLParser.cxx')
-rw-r--r-- | Source/cmXMLParser.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmXMLParser.cxx b/Source/cmXMLParser.cxx index 016514c..e9dca13 100644 --- a/Source/cmXMLParser.cxx +++ b/Source/cmXMLParser.cxx @@ -130,7 +130,7 @@ int cmXMLParser::CleanupParser() } //---------------------------------------------------------------------------- -int cmXMLParser::ParseBuffer(const char* buffer, unsigned int count) +int cmXMLParser::ParseBuffer(const char* buffer, std::string::size_type count) { // Pass the buffer to the expat XML parser. if(!XML_Parse(static_cast<XML_Parser>(this->Parser), buffer, count, 0)) |