Skip to content

Commit 94efe1e

Browse files
committed
---
yaml --- r: 156655 b: refs/heads/try c: 98e237a h: refs/heads/master i: 156653: 3fa71ca 156651: b0ef0b1 156647: 9b78613 156639: a0a62f7 v: v3
1 parent c6e3157 commit 94efe1e

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
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: a34b8dec697014f15e725215e17ea8d956c0ab1a
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
44
refs/heads/snap-stage3: d44ea720fa9dfe062ef06d0eb49a58d4e7e92344
5-
refs/heads/try: dad2db7c83de71063b9311eb3e41bdf4027616f6
5+
refs/heads/try: 98e237a681c798ef6850395cb8483b82fc844452
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
88
refs/heads/try2: 6601b0501e31d08d3892a2d5a7d8a57ab120bf75

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1374,7 +1374,7 @@ macro_rules! checkeddiv_int_impl(
13741374
if *v == 0 || (*self == $min && *v == -1) {
13751375
None
13761376
} else {
1377-
Some(self / *v)
1377+
Some(*self / *v)
13781378
}
13791379
}
13801380
}
@@ -1395,7 +1395,7 @@ macro_rules! checkeddiv_uint_impl(
13951395
if *v == 0 {
13961396
None
13971397
} else {
1398-
Some(self / *v)
1398+
Some(*self / *v)
13991399
}
14001400
}
14011401
}

0 commit comments

Comments
 (0)