Add missing rustc_promotable attribute to unsigned min_value and max_value#55828
Merged
bors merged 1 commit intorust-lang:masterfrom Nov 11, 2018
Merged
Add missing rustc_promotable attribute to unsigned min_value and max_value#55828bors merged 1 commit intorust-lang:masterfrom
rustc_promotable attribute to unsigned min_value and max_value#55828bors merged 1 commit intorust-lang:masterfrom
Conversation
Contributor
|
(rust_highfive has picked a reviewer for you, use r? to override) |
Member
|
This seems fine to me from a code standpoint but I'm going to r? @eddyb or someone else from the compiler team as I'm not sure what the general policy for rustc_promotable is. If the policy is fine with this then r=me |
Contributor
Author
|
This fixes an oversight in #53851 where I only added the attribute to the signed integer types but not the unsigned ones (they are in a different macro) |
eddyb
approved these changes
Nov 9, 2018
Member
|
@bors r+ |
Collaborator
|
📌 Commit f4c9dd5 has been approved by |
Contributor
|
Accepting for beta backport. |
Member
|
FYI, |
emilyalbini
added a commit
to emilyalbini/rust
that referenced
this pull request
Nov 10, 2018
…eddyb Add missing `rustc_promotable` attribute to unsigned `min_value` and `max_value` cc @pnkfelix fixes rust-lang#55806
bors
added a commit
that referenced
this pull request
Nov 11, 2018
Rollup of 17 pull requests Successful merges: - #55630 (resolve: Filter away macro prelude in modules with `#[no_implicit_prelude]` on 2018 edition) - #55687 (Take supertraits into account when calculating associated types) - #55745 (Convert `outlives_components`' return value to a `SmallVec` outparam.) - #55764 (Fix Rc/Arc allocation layout) - #55792 (Prevent ICE in const-prop array oob check) - #55799 (Removed unneeded instance of `// revisions` from a lint test) - #55800 (Fix ICE in `return_type_impl_trait`) - #55801 (NLL: Update box insensitivity test) - #55802 (Don't inline virtual calls (take 2)) - #55816 (Use `SmallVec` to avoid allocations in `from_decimal_string`.) - #55819 (Typecheck patterns of all match arms first, so we get types for bindings) - #55822 (ICE with #![feature(nll)] and elided lifetimes) - #55828 (Add missing `rustc_promotable` attribute to unsigned `min_value` and `max_value`) - #55839 (Fix docstring spelling mistakes) - #55844 (Fix documentation typos.) - #55845 (Set BINARYEN_TRAP_MODE=clamp) - #55856 (rustdoc: refactor: move all static-file include!s into a single module)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
cc @pnkfelix
fixes #55806