mirror of
https://github.com/pocoproject/poco.git
synced 2025-10-29 04:17:55 +01:00
GH #1050 XML: fix gcc -Wshadow warnings
This commit is contained in:
@@ -43,9 +43,9 @@ const std::string DOMException::MESSAGES[_NUMBER_OF_MESSAGES] =
|
||||
};
|
||||
|
||||
|
||||
DOMException::DOMException(unsigned short code):
|
||||
XMLException(message(code)),
|
||||
_code(code)
|
||||
DOMException::DOMException(unsigned short exceptionCode):
|
||||
XMLException(message(exceptionCode)),
|
||||
_code(exceptionCode)
|
||||
{
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user