about summary refs log tree commit diff
path: root/compiler/rustc_span
diff options
context:
space:
mode:
authorMara Bos <m-ou.se@m-ou.se>2025-03-30 10:35:59 +0200
committerMara Bos <m-ou.se@m-ou.se>2025-03-30 10:42:00 +0200
commitcc5ee70b1a51bf30e85d261cc6e485eb3431bcac (patch)
treeb4f0a08745c3211f06070f0ce065b38bb1cfba81 /compiler/rustc_span
parent5cc60728e7ee10eb2ae5f61f7d412d9805b22f0c (diff)
downloadrust-cc5ee70b1a51bf30e85d261cc6e485eb3431bcac.tar.gz
rust-cc5ee70b1a51bf30e85d261cc6e485eb3431bcac.zip
Simplify expansion for format_args!().
Instead of calling new(), we can just use a struct expression directly.

Before:

        Placeholder::new(…, …, …, …)

After:

        Placeholder {
                position: …,
                flags: …,
                width: …,
                precision: …,
        }
Diffstat (limited to 'compiler/rustc_span')
-rw-r--r--compiler/rustc_span/src/symbol.rs4
1 files changed, 4 insertions, 0 deletions
diff --git a/compiler/rustc_span/src/symbol.rs b/compiler/rustc_span/src/symbol.rs
index 6807f96e712..cc4c9860bc2 100644
--- a/compiler/rustc_span/src/symbol.rs
+++ b/compiler/rustc_span/src/symbol.rs
@@ -986,6 +986,7 @@ symbols! {
         field_init_shorthand,
         file,
         file_options,
+        flags,
         float,
         float_to_int_unchecked,
         floorf128,
@@ -1570,6 +1571,7 @@ symbols! {
         pointer_like,
         poll,
         poll_next,
+        position,
         post_dash_lto: "post-lto",
         postfix_match,
         powerpc_target_feature,
@@ -1585,6 +1587,7 @@ symbols! {
         precise_capturing,
         precise_capturing_in_traits,
         precise_pointer_size_matching,
+        precision,
         pref_align_of,
         prefetch_read_data,
         prefetch_read_instruction,
@@ -2274,6 +2277,7 @@ symbols! {
         wasm_target_feature,
         where_clause_attrs,
         while_let,
+        width,
         windows,
         windows_subsystem,
         with_negative_coherence,