Skip to content

Commit 7960b03

Browse files
authored
Update IRABIDetailsProvider.h
Add missing include, prefer C++ include over C include for standard integer types.
1 parent 15c0ce3 commit 7960b03

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

include/swift/IRGen/IRABIDetailsProvider.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,8 @@
1414
#define SWIFT_IRGEN_IRABIDETAILSPROVIDER_H
1515

1616
#include "llvm/ADT/Optional.h"
17-
#include <stdint.h>
17+
#include <cstdint>
18+
#include <memory>
1819
#include <utility>
1920

2021
namespace swift {

0 commit comments

Comments
 (0)