[Backtracing] Don't include things inside a namespace.

We shouldn't be including `<stdint.h>` inside the namespace.
This commit is contained in:
Alastair Houghton
2025-01-16 14:34:58 +00:00
parent d6447284f8
commit ad78a86ca9

View File

@@ -18,14 +18,14 @@
#ifndef SWIFT_BACKTRACING_FIXED_LAYOUT_H
#define SWIFT_BACKTRACING_FIXED_LAYOUT_H
#include <stdint.h>
#ifdef __cplusplus
namespace swift {
namespace runtime {
namespace backtrace {
#endif
#include <stdint.h>
struct x86_64_gprs {
uint64_t _r[16];
uint64_t rflags;