summaryrefslogtreecommitdiffstats
path: root/Source/cmXMLParser.cxx
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2016-08-17 14:46:35 (GMT)
committerCMake Topic Stage <kwrobot@kitware.com>2016-08-17 14:46:35 (GMT)
commit67a7dcef45fef6172514d6df1bea3ca94a04735a (patch)
tree7a70d0cd96338acd3664b7bef1dcf59f6c7462bc /Source/cmXMLParser.cxx
parent29593b79a236f9bd6653ed0ab874444ae4f38f00 (diff)
parente7b842e18955d13f6d9c021bab4a8935bf282744 (diff)
downloadCMake-67a7dcef45fef6172514d6df1bea3ca94a04735a.zip
CMake-67a7dcef45fef6172514d6df1bea3ca94a04735a.tar.gz
CMake-67a7dcef45fef6172514d6df1bea3ca94a04735a.tar.bz2
Merge topic 'readability-named-parameter'
e7b842e1 Make sure unnused parameters are /*named*/
Diffstat (limited to 'Source/cmXMLParser.cxx')
-rw-r--r--Source/cmXMLParser.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmXMLParser.cxx b/Source/cmXMLParser.cxx
index a62c36f..7c53a3d 100644
--- a/Source/cmXMLParser.cxx
+++ b/Source/cmXMLParser.cxx
@@ -200,7 +200,7 @@ void cmXMLParser::ReportXmlParseError()
XML_ErrorString(XML_GetErrorCode(parser)));
}
-void cmXMLParser::ReportError(int line, int, const char* msg)
+void cmXMLParser::ReportError(int line, int /*unused*/, const char* msg)
{
if (this->ReportCallback) {
this->ReportCallback(line, msg, this->ReportCallbackData);