net/SocketError: use `auto`
This commit is contained in:
parent
3d814115c8
commit
fd0e958e95
|
@ -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);
|
||||||
|
|
Loading…
Reference in New Issue