From 64f5d139625f1a36270d9d80714ba3a3a58f49cb Mon Sep 17 00:00:00 2001 From: Takashi Sawanaka Date: Wed, 6 Jan 2021 20:50:35 +0900 Subject: [PATCH] Fix "C4551: function call missing argument list" warning (2) --- Externals/poco/XML/src/xmlparse.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Externals/poco/XML/src/xmlparse.cpp b/Externals/poco/XML/src/xmlparse.cpp index a5086903e..9d6dd5813 100644 --- a/Externals/poco/XML/src/xmlparse.cpp +++ b/Externals/poco/XML/src/xmlparse.cpp @@ -6393,7 +6393,7 @@ static unsigned long FASTCALL hash(XML_Parser parser, KEY s) { struct siphash state; struct sipkey key; - (void)sip24_valid(); + //(void)sip24_valid; copy_salt_to_sipkey(parser, &key); sip24_init(&state, &key); sip24_update(&state, s, keylen(s) * sizeof(XML_Char)); -- 2.11.0