Merge tag 'v0.22.7'

release v0.22.7
This commit is contained in:
Max Kellermann
2021-05-19 18:43:19 +02:00
33 changed files with 208 additions and 82 deletions

View File

@@ -47,7 +47,9 @@ FormatSystemError(std::error_code code, const char *fmt,
#ifdef _WIN32
#include <windows.h>
#include <errhandlingapi.h> // for GetLastError()
#include <windef.h> // for HWND (needed by winbase.h)
#include <winbase.h> // for FormatMessageA()
static inline std::system_error
MakeLastError(DWORD code, const char *msg) noexcept

View File

@@ -27,7 +27,9 @@
#include <cstring>
#ifdef _WIN32
#include <windows.h>
#include <errhandlingapi.h> // for GetLastError()
#include <windef.h> // for HWND (needed by winbase.h)
#include <winbase.h> // for FormatMessageA()
#else
#include <cerrno>
#endif