diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2007-07-26 14:36:06 -0400 |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2007-07-26 14:36:06 -0400 |
commit | 3f00d3cbc9f24b58f2a2b446f6ca630633c1a0c8 (patch) | |
tree | 125a8ee4056a29b2a289f18c5c2b7c05b5b47da8 /Source/cmXMLParser.h | |
parent | d0561a3d29d0b1322248bf837d807869e9a06031 (diff) | |
download | cmake-3f00d3cbc9f24b58f2a2b446f6ca630633c1a0c8.tar.gz |
ENH: fix warning on win64
Diffstat (limited to 'Source/cmXMLParser.h')
-rw-r--r-- | Source/cmXMLParser.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/Source/cmXMLParser.h b/Source/cmXMLParser.h index 5568920f54..3580e8c85d 100644 --- a/Source/cmXMLParser.h +++ b/Source/cmXMLParser.h @@ -52,7 +52,8 @@ public: * them. */ virtual int InitializeParser(); - virtual int ParseChunk(const char* inputString, std::string::size_type length); + virtual int ParseChunk(const char* inputString, + std::string::size_type length); virtual int CleanupParser(); protected: @@ -95,7 +96,8 @@ protected: static int IsSpace(char c); //! Send the given buffer to the XML parser. - virtual int ParseBuffer(const char* buffer, unsigned int count); + virtual int ParseBuffer(const char* buffer, + std::string::size_type length); //! Send the given c-style string to the XML parser. int ParseBuffer(const char* buffer); |