run clang-format

This commit is contained in:
Frederic Meyer
2018-01-18 14:07:02 +01:00
parent 62dda42e19
commit 50fe451a3b
2 changed files with 5 additions and 7 deletions

View File

@@ -56,12 +56,10 @@ void BSD_U::SendTo(Kernel::HLERequestContext& ctx) {
}
BSD_U::BSD_U() : ServiceFramework("bsd:u") {
static const FunctionInfo functions[] = {
{0, &BSD_U::RegisterClient, "RegisterClient"},
{2, &BSD_U::Socket, "Socket"},
{11, &BSD_U::SendTo, "SendTo"},
{14, &BSD_U::Connect, "Connect"}
};
static const FunctionInfo functions[] = {{0, &BSD_U::RegisterClient, "RegisterClient"},
{2, &BSD_U::Socket, "Socket"},
{11, &BSD_U::SendTo, "SendTo"},
{14, &BSD_U::Connect, "Connect"}};
RegisterHandlers(functions);
}

View File

@@ -2,9 +2,9 @@
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.
#include "core/hle/service/sockets/sockets.h"
#include "core/hle/service/sockets/bsd_u.h"
#include "core/hle/service/sockets/sfdnsres.h"
#include "core/hle/service/sockets/sockets.h"
namespace Service {
namespace Sockets {