Skip to content

Commit 5306a2c

Browse files
committed
---
yaml --- r: 42686 b: refs/heads/try c: 633b40f h: refs/heads/master v: v3
1 parent 63f961b commit 5306a2c

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: 19dfec2aaf746535de1521f68421f9980dbf25de
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
44
refs/heads/snap-stage3: 2f46b763da2c098913884f101b6d71d69af41b49
5-
refs/heads/try: edc94f5c23a87e5f6d32b63779d60920ca70735d
5+
refs/heads/try: 633b40f75da9dae81ae02c96b108622dc01946ba
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
88
refs/heads/try2: a810c03263670238bccd64cabb12a23a46e3a278

branches/try/src/librustc/middle/typeck/infer/lattice.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -492,13 +492,13 @@ fn lattice_var_and_t<L:LatticeDir Combine,
492492
match self.bnd(a_bounds) {
493493
Some(ref a_bnd) => {
494494
// If a has an upper bound, return the LUB(a.ub, b)
495-
debug!("bnd=some(%s)", a_bnd.inf_str(self.infcx()));
495+
debug!("bnd=Some(%s)", a_bnd.inf_str(self.infcx()));
496496
lattice_dir_op(a_bnd, b)
497497
}
498498
None => {
499499
// If a does not have an upper bound, make b the upper bound of a
500500
// and then return b.
501-
debug!("bnd=none");
501+
debug!("bnd=None");
502502
let a_bounds = self.with_bnd(a_bounds, *b);
503503
do self.combine_fields().bnds(&a_bounds.lb, &a_bounds.ub).then {
504504
self.infcx().set(vb, a_id, Root(a_bounds, nde_a.rank));

0 commit comments

Comments
 (0)