-
Notifications
You must be signed in to change notification settings - Fork 12.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Rollup of 8 pull requests #102050
Rollup of 8 pull requests #102050
Commits on Sep 14, 2022
-
Configuration menu - View commit details
-
Copy full SHA for dddfb7d - Browse repository at this point
Copy the full SHA dddfb7dView commit details
Commits on Sep 17, 2022
-
Configuration menu - View commit details
-
Copy full SHA for 0405a5d - Browse repository at this point
Copy the full SHA 0405a5dView commit details
Commits on Sep 18, 2022
-
Configuration menu - View commit details
-
Copy full SHA for eed6fdb - Browse repository at this point
Copy the full SHA eed6fdbView commit details -
Configuration menu - View commit details
-
Copy full SHA for fac12e2 - Browse repository at this point
Copy the full SHA fac12e2View commit details
Commits on Sep 19, 2022
-
Configuration menu - View commit details
-
Copy full SHA for db2d5df - Browse repository at this point
Copy the full SHA db2d5dfView commit details -
Configuration menu - View commit details
-
Copy full SHA for 550bd09 - Browse repository at this point
Copy the full SHA 550bd09View commit details -
Configuration menu - View commit details
-
Copy full SHA for 7207b4d - Browse repository at this point
Copy the full SHA 7207b4dView commit details -
Configuration menu - View commit details
-
Copy full SHA for 638b612 - Browse repository at this point
Copy the full SHA 638b612View commit details -
Configuration menu - View commit details
-
Copy full SHA for 5268567 - Browse repository at this point
Copy the full SHA 5268567View commit details -
Configuration menu - View commit details
-
Copy full SHA for c54c5a3 - Browse repository at this point
Copy the full SHA c54c5a3View commit details -
rustdoc: remove
docblock
class fromitem-decl
This class was originally added in 73b97c7 to support hiding and showing the item, because `main.js` went through all `docblock` elements in the DOM and added toggles to them. https://github.com/rust-lang/rust/blob/73b97c7e7c9cfac4dfa4804654b1db6ab687b589/src/librustdoc/html/static/main.js#L1856-L1867 The `item-decl` is no longer auto-hidden since c96f86d removed it. `item-decl` used to be called `type-decl`: that name was changed in 8b7a2dd. The `docblock` class is no longer used for implementing toggles, since rustdoc switched to using `<details>` elements.
Configuration menu - View commit details
-
Copy full SHA for 9457380 - Browse repository at this point
Copy the full SHA 9457380View commit details -
Configuration menu - View commit details
-
Copy full SHA for 8e6cf7d - Browse repository at this point
Copy the full SHA 8e6cf7dView commit details
Commits on Sep 20, 2022
-
Make the
normalize-overflow
rustdoc test actually do somethingSince rust-lang#88679, rustdoc doesn't load crates eagerly. Add an explicit `extern crate` item to make sure the crate is loaded and the bug reproduces. You can verify this fix by adding `// compile-flags: -Znormalizing-docs` and running the test.
Configuration menu - View commit details
-
Copy full SHA for 690c467 - Browse repository at this point
Copy the full SHA 690c467View commit details -
Rollup merge of rust-lang#101958 - hanar3:101666/enhance-error-messag…
…e, r=oli-obk Improve error for when query is unsupported by crate This is an improvement to the error message mentioned on rust-lang#101666. It seems like a good idea to also add [this link to the rustc-dev-guide](https://rustc-dev-guide.rust-lang.org/query.html), if explaining the query system in detail is a concern here, but I'm unsure if there is any restrictions on adding links to error messages.
Configuration menu - View commit details
-
Copy full SHA for 805f931 - Browse repository at this point
Copy the full SHA 805f931View commit details -
Rollup merge of rust-lang#101976 - RalfJung:mir-semantic-phases, r=ol…
…i-obk MirPhase: clarify that linting is not a semantic change r? `@JakobDegen`
Configuration menu - View commit details
-
Copy full SHA for 4985ff0 - Browse repository at this point
Copy the full SHA 4985ff0View commit details -
Rollup merge of rust-lang#102001 - cuviper:build-atomic-capi, r=nikic
Use LLVM C-API to build atomic cmpxchg and fence We don't need C++ wrappers because the LLVM C API can build these.
Configuration menu - View commit details
-
Copy full SHA for 120ad5c - Browse repository at this point
Copy the full SHA 120ad5cView commit details -
Rollup merge of rust-lang#102008 - GuillaumeGomez:notable-trait-gui-t…
…est, r=notriddle Add GUI test for notable traits element position Fixes rust-lang#101891. r? ``@notriddle``
Configuration menu - View commit details
-
Copy full SHA for 1bcdece - Browse repository at this point
Copy the full SHA 1bcdeceView commit details -
Rollup merge of rust-lang#102013 - spastorino:rpitit-lower-fn-decl, r…
…=compiler-errors Simplify rpitit handling on lower_fn_decl r? ```@compiler-errors```
Configuration menu - View commit details
-
Copy full SHA for dd0c6c3 - Browse repository at this point
Copy the full SHA dd0c6c3View commit details -
Rollup merge of rust-lang#102021 - lcnr:tyConst-fun, r=b-naber,BoxyUwU
some post-valtree cleanup r? project-const-generics cc `@b-naber`
Configuration menu - View commit details
-
Copy full SHA for fa401fd - Browse repository at this point
Copy the full SHA fa401fdView commit details -
Rollup merge of rust-lang#102027 - notriddle:notriddle/docblock-item-…
…decl, r=GuillaumeGomez rustdoc: remove `docblock` class from `item-decl` This class was originally added in 73b97c7 to support hiding and showing the item, because `main.js` went through all `docblock` elements in the DOM and added toggles to them. https://github.com/rust-lang/rust/blob/73b97c7e7c9cfac4dfa4804654b1db6ab687b589/src/librustdoc/html/static/main.js#L1856-L1867 The `item-decl` is no longer auto-hidden since c96f86d removed it. `item-decl` used to be called `type-decl`: that name was changed in 8b7a2dd. The `docblock` class is no longer used for implementing toggles, since rustdoc switched to using `<details>` elements. Preview: https://notriddle.com/notriddle-rustdoc-test/docblock-item-decl/rustdoc/clean/types/enum.Type.html
Configuration menu - View commit details
-
Copy full SHA for 0f51b96 - Browse repository at this point
Copy the full SHA 0f51b96View commit details -
Rollup merge of rust-lang#102038 - jyn514:rustdoc-normalize-test, r=c…
…ompiler-errors Make the `normalize-overflow` rustdoc test actually do something Since rust-lang#88679, rustdoc doesn't load crates eagerly. Add an explicit `extern crate` item to make sure the crate is loaded and the bug reproduces. You can verify this fix by adding `// compile-flags: -Znormalize-docs` and running the test to make sure it gives an error.
Configuration menu - View commit details
-
Copy full SHA for a8414e6 - Browse repository at this point
Copy the full SHA a8414e6View commit details