App: Fix missing ignored variable

This commit is contained in:
Chris Hennes
2022-03-21 09:40:28 -05:00
parent 2118d544da
commit 1d74892f34

View File

@@ -58,7 +58,7 @@ XERCES_CPP_NAMESPACE_USE
namespace MetadataInternal {
class XMLErrorHandler : public HandlerBase {
void warning(const SAXParseException&)
void warning(const SAXParseException& toCatch)
{
// Don't deal with warnings at all
std::ignore = toCatch;