diff options
author | Arthur Cohen <arthur.cohen@embecosm.com> | 2022-10-04 18:15:37 +0200 |
---|---|---|
committer | Arthur Cohen <arthur.cohen@embecosm.com> | 2022-10-27 12:15:11 +0200 |
commit | c1ff8a96f6c11052e54919f786eb7cd4b3788f4c (patch) | |
tree | ec075baf91d2d309f9b21315db2ff94e9f92f647 | |
parent | 8d3ed915652fb170a12c24dfb283b804611adc8e (diff) | |
download | gcc-c1ff8a96f6c11052e54919f786eb7cd4b3788f4c.zip gcc-c1ff8a96f6c11052e54919f786eb7cd4b3788f4c.tar.gz gcc-c1ff8a96f6c11052e54919f786eb7cd4b3788f4c.tar.bz2 |
lexer: Remove system includes
-rw-r--r-- | gcc/rust/lex/rust-codepoint.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/rust/lex/rust-codepoint.h b/gcc/rust/lex/rust-codepoint.h index 22da080..1a9f0ca 100644 --- a/gcc/rust/lex/rust-codepoint.h +++ b/gcc/rust/lex/rust-codepoint.h @@ -19,7 +19,7 @@ #ifndef RUST_CODEPOINT_H #define RUST_CODEPOINT_H -#include <string> +#include "rust-system.h" namespace Rust { struct Codepoint |