net/SocketError: use `auto`

This commit is contained in:
Max Kellermann 2021-04-06 13:58:37 +02:00
parent 3d814115c8
commit fd0e958e95
1 changed files with 2 additions and 2 deletions

View File

@ -171,7 +171,7 @@ public:
};
[[gnu::pure]]
static inline std::system_error
static inline auto
MakeSocketError(socket_error_t code, const char *msg) noexcept
{
#ifdef _WIN32
@ -182,7 +182,7 @@ MakeSocketError(socket_error_t code, const char *msg) noexcept
}
[[gnu::pure]]
static inline std::system_error
static inline auto
MakeSocketError(const char *msg) noexcept
{
return MakeSocketError(GetSocketError(), msg);