Skip to content
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 15 pull requests #75308

Merged
merged 32 commits into from
Aug 9, 2020
Merged
Changes from 1 commit
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
a4fb1d0
adjust remaining targets
stlankes Jul 27, 2020
e1ef3fa
Consistent variable name alloc for raw_vec
pickfire Aug 4, 2020
d243fa1
Fix the documentation for move about Fn traits implementations
poliorcetics Aug 4, 2020
a784729
Add `as_mut_ptr` to `NonNull<[T]>`
TimDiekmann Aug 6, 2020
06cf40f
Show multi extension example for Path in doctests
pickfire Aug 7, 2020
7e68b7d
Update E0271.md
strom-und-spiele Jul 24, 2020
a11c279
Show relative example for Path ancestors
pickfire Aug 8, 2020
6dffd2d
Separate example for Path strip_prefix
pickfire Aug 8, 2020
9532b83
Show Path extension example change multi extension
pickfire Aug 8, 2020
b3ae88f
Use assert! for Path exists example to check bool
pickfire Aug 8, 2020
4b15b80
Remove abmiguity from PathBuf pop example
pickfire Aug 8, 2020
ad6d237
fix `min_const_generics` version
lcnr Aug 8, 2020
c2099b5
Add safety section to `NonNull::as_*` method docs
aticu Aug 7, 2020
d8cf9aa
Use `&` instead of `let ref` in E0502
slanterns Aug 8, 2020
1cd8dff
Add an example about the behaviour of move and Fn* traits
poliorcetics Aug 8, 2020
259d350
Clean up E0750 explanation
GuillaumeGomez Aug 8, 2020
17db7a4
Remove E0750 from unchecked error codes
GuillaumeGomez Aug 8, 2020
5bbdc73
Rollup merge of #74712 - strom-und-spiele:E0271-cleanup, r=Mark-Simul…
JohnTitor Aug 8, 2020
dde4fb3
Rollup merge of #74842 - hermitcore:thread_local, r=Mark-Simulacrum
JohnTitor Aug 8, 2020
3370ac0
Rollup merge of #75151 - pickfire:patch-4, r=LukasKalbertodt
JohnTitor Aug 8, 2020
ccffe18
Rollup merge of #75162 - poliorcetics:move-documentation-fix, r=jyn514
JohnTitor Aug 8, 2020
c85075d
Rollup merge of #75248 - TimDiekmann:NonNull-as_mut_ptr, r=RalfJung
JohnTitor Aug 8, 2020
cbc6914
Rollup merge of #75262 - pickfire:patch-6, r=jyn514
JohnTitor Aug 8, 2020
cb75fea
Rollup merge of #75266 - aticu:master, r=RalfJung
JohnTitor Aug 8, 2020
27b864b
Rollup merge of #75284 - pickfire:patch-7, r=LukasKalbertodt
JohnTitor Aug 8, 2020
28ab318
Rollup merge of #75285 - pickfire:patch-8, r=jonas-schievink
JohnTitor Aug 8, 2020
42e163b
Rollup merge of #75287 - pickfire:patch-10, r=jonas-schievink
JohnTitor Aug 8, 2020
6baee95
Rollup merge of #75288 - pickfire:patch-11, r=jonas-schievink
JohnTitor Aug 8, 2020
3038ecb
Rollup merge of #75289 - pickfire:patch-12, r=jonas-schievink
JohnTitor Aug 8, 2020
55f2490
Rollup merge of #75290 - rust-lang:min_const_generics-version, r=jona…
JohnTitor Aug 8, 2020
bc3ee48
Rollup merge of #75291 - GuillaumeGomez:cleanup-e0750, r=pickfire
JohnTitor Aug 8, 2020
e6dfd30
Rollup merge of #75292 - slanterns:cleanup-E0502, r=GuillaumeGomez
JohnTitor Aug 8, 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
Remove E0750 from unchecked error codes
  • Loading branch information
GuillaumeGomez committed Aug 8, 2020

Unverified

This user has not yet uploaded their public signing key.
commit 17db7a4b5ca2f6439d8b8699029c060717e217f8
3 changes: 1 addition & 2 deletions src/tools/tidy/src/error_codes_check.rs
Original file line number Diff line number Diff line change
@@ -16,8 +16,7 @@ const EXEMPTED_FROM_TEST: &[&str] = &[
];

// Some error codes don't have any tests apparently...
const IGNORE_EXPLANATION_CHECK: &[&str] =
&["E0570", "E0601", "E0602", "E0639", "E0729", "E0749", "E0750"];
const IGNORE_EXPLANATION_CHECK: &[&str] = &["E0570", "E0601", "E0602", "E0639", "E0729", "E0749"];

fn check_error_code_explanation(
f: &str,