File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
branches/try/src/librustc/middle/typeck/infer Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 2
2
refs/heads/master: 19dfec2aaf746535de1521f68421f9980dbf25de
3
3
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
4
4
refs/heads/snap-stage3: 2f46b763da2c098913884f101b6d71d69af41b49
5
- refs/heads/try: edc94f5c23a87e5f6d32b63779d60920ca70735d
5
+ refs/heads/try: 633b40f75da9dae81ae02c96b108622dc01946ba
6
6
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
7
7
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
8
8
refs/heads/try2: a810c03263670238bccd64cabb12a23a46e3a278
Original file line number Diff line number Diff line change @@ -492,13 +492,13 @@ fn lattice_var_and_t<L:LatticeDir Combine,
492
492
match self . bnd ( a_bounds) {
493
493
Some ( ref a_bnd) => {
494
494
// 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( ) ) ) ;
496
496
lattice_dir_op ( a_bnd, b)
497
497
}
498
498
None => {
499
499
// If a does not have an upper bound, make b the upper bound of a
500
500
// and then return b.
501
- debug ! ( "bnd=none " ) ;
501
+ debug ! ( "bnd=None " ) ;
502
502
let a_bounds = self . with_bnd ( a_bounds, * b) ;
503
503
do self. combine_fields ( ) . bnds ( & a_bounds. lb , & a_bounds. ub ) . then {
504
504
self . infcx ( ) . set ( vb, a_id, Root ( a_bounds, nde_a. rank ) ) ;
You can’t perform that action at this time.
0 commit comments