Skip to content
Closed
Changes from 1 commit
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
0fc9d39
Minimize parameter of coerce_borrowed_pointer()
ldm0 Apr 24, 2020
169c399
Use `LocalDefId` in `typeck_tables_of` and `used_trait_imports` queries
marmeladema Apr 17, 2020
afe4b1b
Use `LocalDefId` in `unsafety_check_result` query
marmeladema Apr 17, 2020
d9e286b
Use `LocalDefId` in `mir_built` query
marmeladema Apr 17, 2020
f27cec9
Use `LocalDefId` for `type_param_predicates` query
marmeladema Apr 17, 2020
efe30de
Accept `LocalDefId` as keyt for `names_imported_by_glob_use`
marmeladema Apr 18, 2020
6a5b281
Return a `FxHashSet<LocalDefId>` from `mir_keys` query
marmeladema Apr 18, 2020
28e3022
Accept `LocalDefId` as key for `mir_borrowck` query
marmeladema Apr 18, 2020
58ba925
Accept `LocalDefId` as key for `mir_validated` query
marmeladema Apr 18, 2020
283de4f
Accept `LocalDefId` as argument for `mir_build::lint::check`
marmeladema Apr 18, 2020
df05e10
Accept `LocalDefId` as key for `lint_mod` query
marmeladema Apr 18, 2020
2286364
Accept `LocalDefId` as key for `check_mod_privacy` query
marmeladema Apr 18, 2020
d826fb0
Declare `body_owner` as `LocalDefId` in `MemCategorizationContext`
marmeladema Apr 18, 2020
eb866d0
Declare `body_owner` as `LocalDefId` in `RegionCtxt`
marmeladema Apr 18, 2020
f2a1338
Change return type of `entry_fn` query to return a `LocalDefId`
marmeladema Apr 18, 2020
a9214a9
Accept `LocalDefId` as key for `check_item_well_formed` query
marmeladema Apr 18, 2020
1c56ff3
Accept `LocalDefId` as key for `check_trait_item_well_formed` query
marmeladema Apr 18, 2020
90639e2
Accept `LocalDefId` as key for `check_impl_item_well_formed` query
marmeladema Apr 18, 2020
5a5fa39
Handle build completion message from Cargo
Mark-Simulacrum Apr 25, 2020
3a6fa99
linkchecker: fix typo in main.rs
ryzokuken Apr 26, 2020
efb6d6c
Fix broken link in `QPath` documentation
LeSeulArtichaut Apr 26, 2020
b893ad0
Rollup merge of #71292 - marmeladema:queries-local-def-id, r=eddyb
Dylan-DPC Apr 27, 2020
9cb7f25
Rollup merge of #71524 - ldm0:ptrparam, r=matthewjasper
Dylan-DPC Apr 27, 2020
76a51c0
Rollup merge of #71567 - Mark-Simulacrum:no-success, r=matthiaskrgr
Dylan-DPC Apr 27, 2020
e4837a5
Rollup merge of #71578 - ryzokuken:linkchecker, r=Dylan-DPC
Dylan-DPC Apr 27, 2020
df54124
Rollup merge of #71596 - LeSeulArtichaut:patch-1, r=Dylan-DPC
Dylan-DPC Apr 27, 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
Prev Previous commit
Next Next commit
Fix broken link in QPath documentation
  • Loading branch information
LeSeulArtichaut authored Apr 26, 2020
commit efb6d6c027da344753f343fffc5012f29bfecb0e
2 changes: 1 addition & 1 deletion src/librustc_hir/hir.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1601,7 +1601,7 @@ pub enum ExprKind<'hir> {
///
/// To resolve the path to a `DefId`, call [`qpath_res`].
///
/// [`qpath_res`]: ../ty/struct.TypeckTables.html#method.qpath_res
/// [`qpath_res`]: ../rustc_middle/ty/struct.TypeckTables.html#method.qpath_res
#[derive(RustcEncodable, RustcDecodable, Debug, HashStable_Generic)]
pub enum QPath<'hir> {
/// Path to a definition, optionally "fully-qualified" with a `Self`
Expand Down