App: Fix missing ignored variable

This commit is contained in:
Chris Hennes
2022-03-21 09:40:28 -05:00
parent b31f7ae165
commit c996f3040d

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;