about summary refs log tree commit diff
path: root/compiler/rustc_passes/src/check_const.rs
diff options
context:
space:
mode:
authorNicholas Nethercote <n.nethercote@gmail.com>2024-01-04 11:28:14 +1100
committerNicholas Nethercote <n.nethercote@gmail.com>2024-01-10 07:33:06 +1100
commit3c4f1d85af07f394da922f0bd9ff7c0a91e81f45 (patch)
tree77448125f063427e6366e5a1858daa9d0168701e /compiler/rustc_passes/src/check_const.rs
parentff40ad410753d152442192cb01562fe00bf63fe3 (diff)
downloadrust-3c4f1d85af07f394da922f0bd9ff7c0a91e81f45.tar.gz
rust-3c4f1d85af07f394da922f0bd9ff7c0a91e81f45.zip
Rename `{create,emit}_warning` as `{create,emit}_warn`.
For consistency with `warn`/`struct_warn`, and also `{create,emit}_err`,
all of which use an abbreviated form.
Diffstat (limited to 'compiler/rustc_passes/src/check_const.rs')
-rw-r--r--compiler/rustc_passes/src/check_const.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_passes/src/check_const.rs b/compiler/rustc_passes/src/check_const.rs
index 3e5fb1a6b47..3e3f2771f5f 100644
--- a/compiler/rustc_passes/src/check_const.rs
+++ b/compiler/rustc_passes/src/check_const.rs
@@ -122,7 +122,7 @@ impl<'tcx> CheckConstVisitor<'tcx> {
             // corresponding feature gate. This encourages nightly users to use feature gates when
             // possible.
             None if tcx.sess.opts.unstable_opts.unleash_the_miri_inside_of_you => {
-                tcx.dcx().emit_warning(SkippingConstChecks { span });
+                tcx.dcx().emit_warn(SkippingConstChecks { span });
                 return;
             }