diff options
author | SIGMazer <mazinasd7@gmail.com> | 2024-04-23 17:33:17 +0200 |
---|---|---|
committer | Arthur Cohen <arthur.cohen@embecosm.com> | 2025-03-17 16:35:28 +0100 |
commit | 8fb6d2c3e55431ec6085d1734f7fc07f2b1ff861 (patch) | |
tree | ee6697671f4b75fe33f8f23e33f4a324c9dc0917 | |
parent | 9039c25357efcc521712c18717219f7aa1d821bb (diff) | |
download | gcc-8fb6d2c3e55431ec6085d1734f7fc07f2b1ff861.zip gcc-8fb6d2c3e55431ec6085d1734f7fc07f2b1ff861.tar.gz gcc-8fb6d2c3e55431ec6085d1734f7fc07f2b1ff861.tar.bz2 |
gccrs: Add system include to `gcc/rust/rust-system.h`
gcc/rust/ChangeLog:
* rust-system.h: Add system include <stack>
Signed-off-by: SIGMazer <mazinasd7@gmail.com>
-rw-r--r-- | gcc/rust/rust-system.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gcc/rust/rust-system.h b/gcc/rust/rust-system.h index 7a6a72e..986428b 100644 --- a/gcc/rust/rust-system.h +++ b/gcc/rust/rust-system.h @@ -46,6 +46,7 @@ #include <fstream> #include <array> #include <algorithm> +#include <stack> #include <limits> #include <numeric> |