Skip to content

Commit 47ce95d

Browse files
committed
---
yaml --- r: 209487 b: refs/heads/try c: d8122ee h: refs/heads/master i: 209485: c0d93b8 209483: a0808d1 209479: c529997 209471: c37fbd9 v: v3
1 parent 053cf52 commit 47ce95d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
refs/heads/master: 3e561f05c00cd180ec02db4ccab2840a4aba93d2
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
44
refs/heads/snap-stage3: ba0e1cd8147d452c356aacb29fb87568ca26f111
5-
refs/heads/try: 4991c7acad6e030120a2ca352ccd3ed71c5f7aa7
5+
refs/heads/try: d8122ee87d48f0422adf96e568912fe93da27ac7
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/dist-snap: ba4081a5a8573875fed17545846f6f6902c8ba8d
88
refs/tags/release-0.2: c870d2dffb391e14efb05aa27898f1f6333a9596

branches/try/src/libcore/num/wrapping.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,7 @@ macro_rules! signed_overflowing_impl {
232232
#[inline(always)]
233233
fn overflowing_div(self, rhs: $t) -> ($t, bool) {
234234
if self == $t::MIN && rhs == -1 {
235-
(1, true)
235+
(self, true)
236236
} else {
237237
(self/rhs, false)
238238
}

0 commit comments

Comments
 (0)