Skip to content

Commit 28c0d9d

Browse files
committed
[SR-14813] Reformat code slightly.
Used git-clang-format to fix up the changed code.
1 parent 501f30d commit 28c0d9d

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

tools/swift-reflection-fuzzer/swift-reflection-fuzzer.cpp

+3-2
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,9 @@
2828
#include "llvm/Object/ELFObjectFile.h"
2929
#include "llvm/Object/MachOUniversal.h"
3030
#include "llvm/Support/CommandLine.h"
31-
#include <cstdio>
3231
#include <cstddef>
3332
#include <cstdint>
33+
#include <cstdio>
3434

3535
#if defined(__APPLE__) && defined(__MACH__)
3636
#include <TargetConditionals.h>
@@ -77,7 +77,8 @@ class ObjectMemoryReader : public MemoryReader {
7777
case DLQ_GetPtrAuthMask: {
7878
auto result = static_cast<uintptr_t *>(outBuffer);
7979
#if __has_feature(ptrauth_calls)
80-
*result = static_cast<uintptr_t>(ptrauth_strip(static_cast<void *>(0x0007ffffffffffff), 0));
80+
*result = static_cast<uintptr_t>(
81+
ptrauth_strip(static_cast<void *>(0x0007ffffffffffff), 0));
8182
#else
8283
*result = ~uintptr_t(0);
8384
#endif

0 commit comments

Comments
 (0)