1
Fork 0

don't explicitly compare against true or false

This commit is contained in:
Matthias Krüger 2020-02-24 16:52:40 +01:00
parent d9a328a0ad
commit addd7426be
10 changed files with 15 additions and 15 deletions

View file

@ -598,7 +598,7 @@ impl AllocationDefinedness {
pub fn all_bytes_undef(&self) -> bool { pub fn all_bytes_undef(&self) -> bool {
// The `ranges` are run-length encoded and of alternating definedness. // The `ranges` are run-length encoded and of alternating definedness.
// So if `ranges.len() > 1` then the second block is a range of defined. // So if `ranges.len() > 1` then the second block is a range of defined.
self.initial == false && self.ranges.len() == 1 !self.initial && self.ranges.len() == 1
} }
} }

View file

@ -104,7 +104,7 @@ where
) -> Self { ) -> Self {
let bits_per_block = analysis.bits_per_block(body); let bits_per_block = analysis.bits_per_block(body);
let bottom_value_set = if A::BOTTOM_VALUE == true { let bottom_value_set = if A::BOTTOM_VALUE {
BitSet::new_filled(bits_per_block) BitSet::new_filled(bits_per_block)
} else { } else {
BitSet::new_empty(bits_per_block) BitSet::new_empty(bits_per_block)

View file

@ -821,7 +821,7 @@ where
let bits_per_block = denotation.bits_per_block(); let bits_per_block = denotation.bits_per_block();
let num_blocks = body.basic_blocks().len(); let num_blocks = body.basic_blocks().len();
let on_entry = if D::BOTTOM_VALUE == true { let on_entry = if D::BOTTOM_VALUE {
vec![BitSet::new_filled(bits_per_block); num_blocks] vec![BitSet::new_filled(bits_per_block); num_blocks]
} else { } else {
vec![BitSet::new_empty(bits_per_block); num_blocks] vec![BitSet::new_empty(bits_per_block); num_blocks]

View file

@ -1171,13 +1171,13 @@ impl<'a> Parser<'a> {
let comma_after_doc_seen = self.eat(&token::Comma); let comma_after_doc_seen = self.eat(&token::Comma);
// `seen_comma` is always false, because we are inside doc block // `seen_comma` is always false, because we are inside doc block
// condition is here to make code more readable // condition is here to make code more readable
if seen_comma == false && comma_after_doc_seen == true { if !seen_comma && comma_after_doc_seen {
seen_comma = true; seen_comma = true;
} }
if comma_after_doc_seen || self.token == token::CloseDelim(token::Brace) { if comma_after_doc_seen || self.token == token::CloseDelim(token::Brace) {
err.emit(); err.emit();
} else { } else {
if seen_comma == false { if !seen_comma {
let sp = self.sess.source_map().next_point(previous_span); let sp = self.sess.source_map().next_point(previous_span);
err.span_suggestion( err.span_suggestion(
sp, sp,

View file

@ -444,7 +444,7 @@ impl<'a> LateResolutionVisitor<'a, '_, '_> {
PathSource::Expr(Some(parent)) => { PathSource::Expr(Some(parent)) => {
suggested = path_sep(err, &parent); suggested = path_sep(err, &parent);
} }
PathSource::Expr(None) if followed_by_brace == true => { PathSource::Expr(None) if followed_by_brace => {
if let Some((sp, snippet)) = closing_brace { if let Some((sp, snippet)) = closing_brace {
err.span_suggestion( err.span_suggestion(
sp, sp,

View file

@ -495,7 +495,7 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {
Some(hir_id) => hir_id, Some(hir_id) => hir_id,
None => return false, None => return false,
}; };
if self.tcx.has_typeck_tables(def_id) == false { if !self.tcx.has_typeck_tables(def_id) {
return false; return false;
} }
let fn_sig = { let fn_sig = {
@ -512,7 +512,7 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {
Some(hir_id) => hir_id, Some(hir_id) => hir_id,
None => return false, None => return false,
}; };
if self.tcx.has_typeck_tables(def_id) == false { if !self.tcx.has_typeck_tables(def_id) {
return false; return false;
} }
match self.tcx.typeck_tables_of(def_id).liberated_fn_sigs().get(hir_id) { match self.tcx.typeck_tables_of(def_id).liberated_fn_sigs().get(hir_id) {

View file

@ -465,7 +465,7 @@ impl<'a, I: Iterator<Item = Event<'a>>> Iterator for SummaryLine<'a, I> {
} }
_ => true, _ => true,
}; };
return if is_allowed_tag == false { return if !is_allowed_tag {
if is_start { if is_start {
Some(Event::Start(Tag::Paragraph)) Some(Event::Start(Tag::Paragraph))
} else { } else {
@ -671,7 +671,7 @@ impl LangString {
"" => {} "" => {}
"should_panic" => { "should_panic" => {
data.should_panic = true; data.should_panic = true;
seen_rust_tags = seen_other_tags == false; seen_rust_tags = !seen_other_tags;
} }
"no_run" => { "no_run" => {
data.no_run = true; data.no_run = true;

View file

@ -4049,7 +4049,7 @@ fn get_next_url(used_links: &mut FxHashSet<String>, url: String) -> String {
return url; return url;
} }
let mut add = 1; let mut add = 1;
while used_links.insert(format!("{}-{}", url, add)) == false { while !used_links.insert(format!("{}-{}", url, add)) {
add += 1; add += 1;
} }
format!("{}-{}", url, add) format!("{}-{}", url, add)

View file

@ -340,12 +340,12 @@ pub fn look_for_tests<'tcx>(
find_testable_code(&dox, &mut tests, ErrorCodes::No, false); find_testable_code(&dox, &mut tests, ErrorCodes::No, false);
if check_missing_code == true && tests.found_tests == 0 { if check_missing_code && tests.found_tests == 0 {
let sp = span_of_attrs(&item.attrs).unwrap_or(item.source.span()); let sp = span_of_attrs(&item.attrs).unwrap_or(item.source.span());
cx.tcx.struct_span_lint_hir(lint::builtin::MISSING_DOC_CODE_EXAMPLES, hir_id, sp, |lint| { cx.tcx.struct_span_lint_hir(lint::builtin::MISSING_DOC_CODE_EXAMPLES, hir_id, sp, |lint| {
lint.build("missing code example in this documentation").emit() lint.build("missing code example in this documentation").emit()
}); });
} else if check_missing_code == false } else if !check_missing_code
&& tests.found_tests > 0 && tests.found_tests > 0
&& !cx.renderinfo.borrow().access_levels.is_public(item.def_id) && !cx.renderinfo.borrow().access_levels.is_public(item.def_id)
{ {

View file

@ -253,9 +253,9 @@ pub fn get_differences(against: &CssPath, other: &CssPath, v: &mut Vec<String>)
break; break;
} }
} }
if found == false { if !found {
v.push(format!(" Missing \"{}\" rule", child.name)); v.push(format!(" Missing \"{}\" rule", child.name));
} else if found_working == false { } else if !found_working {
v.extend(tmp.iter().cloned()); v.extend(tmp.iter().cloned());
} }
} }