diff options
author | Simon Cook <simon.cook@embecosm.com> | 2022-04-12 16:45:56 +0200 |
---|---|---|
committer | Arthur Cohen <arthur.cohen@embecosm.com> | 2023-02-21 12:36:41 +0100 |
commit | 6ef1089ec27e88e463f3accc704cf0cdcb2e8246 (patch) | |
tree | 29375c09a9c6a55169adbe1376c2ff34928e9caf | |
parent | a8531cd9a82aa68d488482886defab11f5e9791f (diff) | |
download | gcc-6ef1089ec27e88e463f3accc704cf0cdcb2e8246.zip gcc-6ef1089ec27e88e463f3accc704cf0cdcb2e8246.tar.gz gcc-6ef1089ec27e88e463f3accc704cf0cdcb2e8246.tar.bz2 |
gccrs: rust: Allow gccrs to build on x86_64-apple-darwin with clang/libc++
gcc/rust/ChangeLog:
* util/rust-inline-visitor.h: Remove some offending system includes.
-rw-r--r-- | gcc/rust/util/rust-inline-visitor.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/gcc/rust/util/rust-inline-visitor.h b/gcc/rust/util/rust-inline-visitor.h index 18920d9..105a67b 100644 --- a/gcc/rust/util/rust-inline-visitor.h +++ b/gcc/rust/util/rust-inline-visitor.h @@ -22,9 +22,6 @@ #ifndef RUST_INLINE_VISITOR #define RUST_INLINE_VISITOR -#include <utility> -#include <type_traits> - namespace Rust { // Wrapper for the target Visitor we're matching against. |