diff options
| author | Nicholas Nethercote <n.nethercote@gmail.com> | 2023-11-22 09:53:07 +1100 |
|---|---|---|
| committer | Nicholas Nethercote <n.nethercote@gmail.com> | 2023-11-26 08:38:40 +1100 |
| commit | 57cd5e6551ffcd071aa0496f9b8c0ed28dca7ffe (patch) | |
| tree | 5c8361a2adf8889bc88d9f3e1a4fad176032a2b0 /compiler/rustc_ast_passes/src/lib.rs | |
| parent | 1a4219da43461fa37a9a68f9e57bf019ac9091e0 (diff) | |
| download | rust-57cd5e6551ffcd071aa0496f9b8c0ed28dca7ffe.tar.gz rust-57cd5e6551ffcd071aa0496f9b8c0ed28dca7ffe.zip | |
Use `rustc_fluent_macro::fluent_messages!` directly.
Currently we always do this:
```
use rustc_fluent_macro::fluent_messages;
...
fluent_messages! { "./example.ftl" }
```
But there is no need, we can just do this everywhere:
```
rustc_fluent_macro::fluent_messages! { "./example.ftl" }
```
which is shorter.
Diffstat (limited to 'compiler/rustc_ast_passes/src/lib.rs')
| -rw-r--r-- | compiler/rustc_ast_passes/src/lib.rs | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/compiler/rustc_ast_passes/src/lib.rs b/compiler/rustc_ast_passes/src/lib.rs index 55cdc939d27..ba09183374e 100644 --- a/compiler/rustc_ast_passes/src/lib.rs +++ b/compiler/rustc_ast_passes/src/lib.rs @@ -15,12 +15,10 @@ #![deny(rustc::untranslatable_diagnostic)] #![deny(rustc::diagnostic_outside_of_impl)] -use rustc_fluent_macro::fluent_messages; - pub mod ast_validation; mod errors; pub mod feature_gate; pub mod node_count; pub mod show_span; -fluent_messages! { "../messages.ftl" } +rustc_fluent_macro::fluent_messages! { "../messages.ftl" } |
