Skip to content

Commit d2e1bfb

Browse files
committed
librustc: Long line. rs=burning
1 parent 83ced67 commit d2e1bfb

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/librustc/middle/ty.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -339,7 +339,9 @@ pub pure fn get(t: t) -> t_box {
339339
pub pure fn tbox_has_flag(tb: t_box, flag: tbox_flag) -> bool {
340340
(tb.flags & (flag as uint)) != 0u
341341
}
342-
pub pure fn type_has_params(t: t) -> bool { tbox_has_flag(get(t), has_params) }
342+
pub pure fn type_has_params(t: t) -> bool {
343+
tbox_has_flag(get(t), has_params)
344+
}
343345
pub pure fn type_has_self(t: t) -> bool { tbox_has_flag(get(t), has_self) }
344346
pub pure fn type_needs_infer(t: t) -> bool {
345347
tbox_has_flag(get(t), needs_infer)

0 commit comments

Comments
 (0)