Skip to content

Commit b7db160

Browse files
committed
[SR-14813] Use the C++ standard library includes.
Replace use of stdio.h, stddef.h and stdint.h with the C++ versions of those headers.
1 parent d74fef9 commit b7db160

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

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

+3-3
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 <stdio.h>
32-
#include <stddef.h>
33-
#include <stdint.h>
31+
#include <cstdio>
32+
#include <cstddef>
33+
#include <cstdint>
3434

3535
#if defined(__APPLE__) && defined(__MACH__)
3636
#include <TargetConditionals.h>

0 commit comments

Comments
 (0)