Use std::unordered_map<> in private wxWebRequest headers

Replace wx synonym with the direct use of the standard class.
This commit is contained in:
Vadim Zeitlin 2023-04-17 22:57:38 +01:00
parent 35c36665a5
commit 8e35b647c3
3 changed files with 8 additions and 9 deletions

View file

@ -24,6 +24,7 @@
#include "wx/wfstream.h"
#include <memory>
#include <unordered_map>
// This test uses httpbin service and by default uses the mirror at the
// location below, which seems to be more reliable than the main site at
@ -540,7 +541,7 @@ TEST_CASE_METHOD(RequestFixture,
}
}
WX_DECLARE_STRING_HASH_MAP(wxString, wxWebRequestHeaderMap);
using wxWebRequestHeaderMap = std::unordered_map<wxString, wxString>;
namespace wxPrivate
{