Merge topic 'wix-external-expat'

86037915 CPackWIX: Add static_casts for XML_Parser.
This commit is contained in:
Brad King 2015-03-27 09:15:23 -04:00 committed by CMake Topic Stage
commit a92f217a4b
1 changed files with 2 additions and 2 deletions

View File

@ -132,8 +132,8 @@ void cmWIXPatchParser::ReportError(int line, int column, const char* msg)
void cmWIXPatchParser::ReportValidationError(std::string const& message)
{
ReportError(XML_GetCurrentLineNumber(Parser),
XML_GetCurrentColumnNumber(Parser),
ReportError(XML_GetCurrentLineNumber(static_cast<XML_Parser>(this->Parser)),
XML_GetCurrentColumnNumber(static_cast<XML_Parser>(this->Parser)),
message.c_str());
}