Skip to content

Commit f5c4265

Browse files
Fix warning when compilin libcore on 16bit targets.
Fixes rust-lang#49617
1 parent 5ee891c commit f5c4265

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/libcore/iter/range.rs

+1
Original file line numberDiff line numberDiff line change
@@ -488,6 +488,7 @@ macro_rules! try_from_unbounded {
488488
}
489489

490490
// unsigned to signed (only positive bound)
491+
#[cfg(any(target_pointer_width = "32", target_pointer_width = "64"))]
491492
macro_rules! try_from_upper_bounded {
492493
($($target:ty),*) => {$(
493494
impl PrivateTryFromUsize for $target {

0 commit comments

Comments
 (0)