rust/compiler/rustc_mir/src
Matthias Krüger f7b834831f remove useless ?s (clippy::needless_question_marks)
Example code:
```
fn opts() -> Option<String> {
    let s: Option<String> = Some(String::new());
    Some(s?) // this can just be "s"
}
```
2021-02-17 23:23:57 +01:00
..
borrow_check Auto merge of #81611 - cjgillot:meowner, r=estebank 2021-02-16 22:14:32 +00:00
const_eval Reduce size of InterpErrorInfo to 8 bytes 2021-02-17 08:57:06 +01:00
dataflow Remove RCs from Borrows 2021-02-08 20:37:16 +01:00
interpret remove useless ?s (clippy::needless_question_marks) 2021-02-17 23:23:57 +01:00
monomorphize Only store a LocalDefId in hir::ImplItem. 2021-02-15 19:32:29 +01:00
transform Reduce size of InterpErrorInfo to 8 bytes 2021-02-17 08:57:06 +01:00
util Fix MIR pretty printer for non-local DefIds 2021-02-13 20:23:27 +03:00
lib.rs Prevent query cycles during inlining 2021-01-23 16:51:22 +00:00
shim.rs Replace let Some(..) = with .is_some() 2021-01-17 19:06:12 -05:00