8000 Rollup of 7 pull requests by JohnTitor · Pull Request #71410 · rust-lang/rust · GitHub
[go: up one dir, main page]

Skip to content

Rollup of 7 pull requests #71410

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

Merged
merged 22 commits into from
Apr 22, 2020
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
33905ad
Remove unused dependencies
sinkuu Apr 17, 2020
fae4e2a
Remove unused ToHex/FromHex trait
sinkuu Apr 17, 2020
d3c96f0
Suggest `-> impl Trait` and `-> Box<dyn Trait>` on fn that doesn't re…
estebank Apr 10, 2020
e536257
Ensure tail expression will have a `Ty` for E0746
estebank Apr 11, 2020
9fc0833
Stop accessing module level int consts via crate::<Ty>
faern Apr 16, 2020
4ddf661
Define module level int consts from assoc consts
faern Apr 16, 2020
6850e4a
Use assoc float consts instead of module level
faern Apr 16, 2020
9af047f
Fix show-const-contents rustdoc test
faern Apr 20, 2020
0315864
Fix #! (shebang) stripping account space issue #70528
Apr 21, 2020
ee5a212
Refactoring and added test-cases #70528
Apr 21, 2020
365b3cc
Fix formatting issue
Apr 21, 2020
20de922
Fix stage0.txt version number comment
RalfJung Apr 21, 2020
e2901c4
Fix incorrect description of E0690
aticu Apr 21, 2020
1b362cd
Minor refactoring
Apr 21, 2020
410fc9d
Clean up E0554 explanation
GuillaumeGomez Apr 21, 2020
24fb393
Rollup merge of #70998 - estebank:suggest-impl-trait-empty-fn, r=varkor
JohnTitor Apr 22, 2020
567e54f
Rollup merge of #71236 - sinkuu:cleanup, r=nikomatsakis
JohnTitor Apr 22, 2020
f28e387
Rollup merge of #71366 - faern:use-assoc-int-consts3, r=dtolnay
JohnTitor Apr 22, 2020
46a8dce
Rollup merge of #71372 - ayushmishra2005:shebang_stripping, r=estebank
JohnTitor Apr 22, 2020
836a64a
Rollup merge of #71384 - RalfJung:RalfJung-patch-1, r=Mark-Simulacrum
JohnTitor Apr 22, 2020
3efa70f
Rollup merge of #71390 - aticu:master, r=Dylan-DPC
JohnTitor Apr 22, 2020
66eaead
Rollup merge of #71399 - rust-lang:cleanup-e0554, r=Dylan-DPC
JohnTitor Apr 22, 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 unused ToHex/FromHex trait
  • Loading branch information
sinkuu committed Apr 20, 2020
commit fae4e2a155c860f81201e404eb2e28bde50bcc4e
2 changes: 0 additions & 2 deletions src/librustc_data_structures/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,6 @@ extern crate log;
#[macro_use]
extern crate cfg_if;

pub use rustc_serialize::hex::ToHex;

#[inline(never)]
#[cold]
pub fn cold_path<F: FnOnce() -> R, R>(f: F) -> R {
Expand Down
137 changes: 0 additions & 137 deletions src/libserialize/hex.rs

This file was deleted.

67 changes: 0 additions & 67 deletions src/libserialize/hex/tests.rs

This file was deleted.

1 change: 0 additions & 1 deletion src/libserialize/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ pub use self::serialize::{UseSpecializedDecodable, UseSpecializedEncodable};
mod collection_impls;
mod serialize;

pub mod hex;
pub mod json;

pub mod leb128;
Expand Down
0