Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Changes from 2 commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
00cf550
Env use shorter intra-doc links in path
pickfire Aug 26, 2020
1d017eb
Fix env doc vars_os broken link
pickfire Aug 30, 2020
af24bdb
Make `cow_is_borrowed` methods const
Aug 31, 2020
c9a48d1
Fix strings indent
GuillaumeGomez Aug 31, 2020
85a400d
Remove notrust in rustc_middle
pickfire Aug 31, 2020
029ff37
Adjust Linux supported kernels and glibc
tesuji Aug 31, 2020
b741cc5
Fix string
GuillaumeGomez Aug 31, 2020
1baf3ff
Avoid StringReader when checking code blocks for syntax errors
matklad Aug 29, 2020
30ce15f
Make StringReader private
matklad Aug 31, 2020
4404cc5
Revert #75463
ecstatic-morse Aug 31, 2020
f3ae96e
Clean up E0769 explanation
GuillaumeGomez Aug 31, 2020
153f966
Clean up E0764 explanation
GuillaumeGomez Aug 31, 2020
5716c3e
Update expect-test to 1.0
matklad Aug 31, 2020
d591829
Add a test for const
Aug 31, 2020
116ad98
Remove tick for macOS x86
tesuji Sep 1, 2020
ddb054a
Fix `-Z instrument-coverage` on MSVC
richkadel Aug 27, 2020
7225f66
Adds two source span utility functions used in source-based coverage
richkadel Aug 27, 2020
b675824
Rollup merge of #75945 - pickfire:patch-7, r=jyn514
tmandry Sep 1, 2020
6d834a4
Rollup merge of #76002 - richkadel:llvm-coverage-map-gen-6b.3, r=tmandry
tmandry Sep 1, 2020
934127c
Rollup merge of #76003 - richkadel:llvm-coverage-map-gen-6b.4, r=wesl…
tmandry Sep 1, 2020
5033203
Rollup merge of #76059 - GuillaumeGomez:cleanup-e0764, r=Dylan-DPC,pi…
tmandry Sep 1, 2020
4f27620
Rollup merge of #76103 - GuillaumeGomez:cleanup-e0769, r=Dylan-DPC
tmandry Sep 1, 2020
c307e90
Rollup merge of #76139 - CDirkx:cow-is-borrowed, r=ecstatic-morse
tmandry Sep 1, 2020
5ac47b1
Rollup merge of #76154 - GuillaumeGomez:strings-indent, r=jyn514
tmandry Sep 1, 2020
9df193b
Rollup merge of #76161 - pickfire:patch-3, r=pickfire
tmandry Sep 1, 2020
e7b4cde
Rollup merge of #76163 - lzutao:readme-glibc, r=cuviper
tmandry Sep 1, 2020
90e4bfa
Rollup merge of #76166 - matklad:privatereader, r=petrochenkov
tmandry Sep 1, 2020
9d435d2
Rollup merge of #76172 - ecstatic-morse:revert-75463, r=RalfJung
tmandry Sep 1, 2020
8d328d7
Rollup merge of #76178 - matklad:et, r=Mark-Simulacrum
tmandry Sep 1, 2020
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions compiler/rustc_middle/src/ty/walk.rs
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ impl GenericArg<'tcx> {
/// that appear in `self`, it does not descend into the fields of
/// structs or variants. For example:
///
/// ```notrust
/// ```text
/// isize => { isize }
/// Foo<Bar<isize>> => { Foo<Bar<isize>>, Bar<isize>, isize }
/// [isize] => { [isize], isize }
Expand All @@ -80,7 +80,7 @@ impl<'tcx> super::TyS<'tcx> {
/// that appear in `self`, it does not descend into the fields of
/// structs or variants. For example:
///
/// ```notrust
/// ```text
/// isize => { isize }
/// Foo<Bar<isize>> => { Foo<Bar<isize>>, Bar<isize>, isize }
/// [isize] => { [isize], isize }
Expand Down