STYLE: fix compiler warning

This commit is contained in:
Bill Hoffman 2007-07-25 09:22:19 -04:00
parent ef1e66e92f
commit f4ac0f8373
2 changed files with 4 additions and 3 deletions

View File

@ -39,7 +39,7 @@ cmXMLParser::~cmXMLParser()
int cmXMLParser::Parse(const char* string) int cmXMLParser::Parse(const char* string)
{ {
return (int)this->InitializeParser() && return (int)this->InitializeParser() &&
this->ParseChunk(string, (unsigned int)strlen(string)) && this->ParseChunk(string, strlen(string)) &&
this->CleanupParser(); this->CleanupParser();
} }
@ -84,7 +84,8 @@ int cmXMLParser::InitializeParser()
} }
//---------------------------------------------------------------------------- //----------------------------------------------------------------------------
int cmXMLParser::ParseChunk(const char* inputString, unsigned int length) int cmXMLParser::ParseChunk(const char* inputString,
std::string::size_type length)
{ {
if ( !this->Parser ) if ( !this->Parser )
{ {

View File

@ -52,7 +52,7 @@ public:
* them. * them.
*/ */
virtual int InitializeParser(); 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(); virtual int CleanupParser();
protected: protected: