From: Pierre-Emmanuel Patry Date: Tue, 2 May 2023 14:14:38 +0000 (+0200) Subject: gccrs: ast: Rename header guard X-Git-Tag: basepoints/gcc-15~2563 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a56f04dec3eadfd4fcf1aabce00245147646d5aa;p=thirdparty%2Fgcc.git gccrs: ast: Rename header guard The header guard did not match the file name anymore. gcc/rust/ChangeLog: * ast/rust-ast-collector.h (RUST_AST_TOKENSTREAM_H): Rename headerguard from RUST_AST_TOKENSTREAM_H ... (RUST_AST_COLLECTOR_H): ... to RUST_AST_COLLECTOR_H. Signed-off-by: Pierre-Emmanuel Patry --- diff --git a/gcc/rust/ast/rust-ast-collector.h b/gcc/rust/ast/rust-ast-collector.h index 01c7e7c4678e..f6131a4ff2ab 100644 --- a/gcc/rust/ast/rust-ast-collector.h +++ b/gcc/rust/ast/rust-ast-collector.h @@ -16,8 +16,8 @@ // along with GCC; see the file COPYING3. If not see // . -#ifndef RUST_AST_TOKENSTREAM_H -#define RUST_AST_TOKENSTREAM_H +#ifndef RUST_AST_COLLECTOR_H +#define RUST_AST_COLLECTOR_H #include "rust-token.h" #include "rust-ast-visitor.h" @@ -314,4 +314,4 @@ private: } // namespace Rust -#endif // !RUST_AST_TOKENSTREAM_H +#endif // !RUST_AST_COLLECTOR_H