about summary refs log tree commit diff
path: root/compiler/rustc_const_eval/src
diff options
context:
space:
mode:
authorTomasz Miąsko <tomasz.miasko@gmail.com>2022-02-22 00:00:00 +0000
committerTomasz Miąsko <tomasz.miasko@gmail.com>2022-02-23 08:58:36 +0100
commit1113cd5bbe81d4c94dd95e5d376869fb4516335e (patch)
treeb26eb051369bf9ff6eac6a50c68a4c57ce19ed8a /compiler/rustc_const_eval/src
parentbafe8d06e015eb00724d3d497516191d6681943f (diff)
downloadrust-1113cd5bbe81d4c94dd95e5d376869fb4516335e.tar.gz
rust-1113cd5bbe81d4c94dd95e5d376869fb4516335e.zip
Rename `region_should_not_be_omitted` to `should_print_region`
to avoid double negation
Diffstat (limited to 'compiler/rustc_const_eval/src')
-rw-r--r--compiler/rustc_const_eval/src/interpret/intrinsics/type_name.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_const_eval/src/interpret/intrinsics/type_name.rs b/compiler/rustc_const_eval/src/interpret/intrinsics/type_name.rs
index e6f243e28db..aa84b16b502 100644
--- a/compiler/rustc_const_eval/src/interpret/intrinsics/type_name.rs
+++ b/compiler/rustc_const_eval/src/interpret/intrinsics/type_name.rs
@@ -149,7 +149,7 @@ impl<'tcx> Printer<'tcx> for AbsolutePathPrinter<'tcx> {
 }
 
 impl<'tcx> PrettyPrinter<'tcx> for AbsolutePathPrinter<'tcx> {
-    fn region_should_not_be_omitted(&self, _region: ty::Region<'_>) -> bool {
+    fn should_print_region(&self, _region: ty::Region<'_>) -> bool {
         false
     }
     fn comma_sep<T>(mut self, mut elems: impl Iterator<Item = T>) -> Result<Self, Self::Error>