Skip to content

Commit 1f95f80

Browse files
committed
Clang format #213
1 parent e49cb00 commit 1f95f80

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/libfuzzer/libfuzzer_mutator.cc

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@
1515
#include "src/libfuzzer/libfuzzer_mutator.h"
1616

1717
#if defined(__has_feature)
18-
# if __has_feature(memory_sanitizer)
18+
#if __has_feature(memory_sanitizer)
1919
#include <sanitizer/msan_interface.h>
20-
# endif
20+
#endif
2121
#endif
2222
#include <string.h>
2323

@@ -72,9 +72,9 @@ T MutateValue(T v) {
7272
memset(reinterpret_cast<uint8_t*>(&v) + size, 0, sizeof(v) - size);
7373
// The value from LLVMFuzzerMutate needs to be treated as initialized.
7474
#if defined(__has_feature)
75-
# if __has_feature(memory_sanitizer)
75+
#if __has_feature(memory_sanitizer)
7676
__msan_unpoison(&v, sizeof(v));
77-
# endif
77+
#endif
7878
#endif
7979
return v;
8080
}
@@ -106,9 +106,9 @@ std::string Mutator::MutateString(const std::string& value,
106106
value.size(), result.size()));
107107
// The value from LLVMFuzzerMutate needs to be treated as initialized.
108108
#if defined(__has_feature)
109-
# if __has_feature(memory_sanitizer)
109+
#if __has_feature(memory_sanitizer)
110110
__msan_unpoison(&result[0], result.size());
111-
# endif
111+
#endif
112112
#endif
113113
return result;
114114
}

0 commit comments

Comments
 (0)