net/SocketError: use auto

This commit is contained in:
Max Kellermann
2021-04-06 13:58:37 +02:00
parent 3d814115c8
commit fd0e958e95

View File

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