]> git.lizzy.rs Git - rust.git/commitdiff
librustc: Long line. rs=burning
authorPatrick Walton <pcwalton@mimiga.net>
Wed, 30 Jan 2013 22:29:47 +0000 (14:29 -0800)
committerPatrick Walton <pcwalton@mimiga.net>
Wed, 30 Jan 2013 22:30:42 +0000 (14:30 -0800)
src/librustc/middle/ty.rs

index 6833c82e2d20205ab7d435d2499403c27179cdf3..2b350706afbd2468290872a64c2c0312e691ab7d 100644 (file)
@@ -339,7 +339,9 @@ enum t_opaque {}
 pub pure fn tbox_has_flag(tb: t_box, flag: tbox_flag) -> bool {
     (tb.flags & (flag as uint)) != 0u
 }
-pub pure fn type_has_params(t: t) -> bool { tbox_has_flag(get(t), has_params) }
+pub pure fn type_has_params(t: t) -> bool {
+    tbox_has_flag(get(t), has_params)
+}
 pub pure fn type_has_self(t: t) -> bool { tbox_has_flag(get(t), has_self) }
 pub pure fn type_needs_infer(t: t) -> bool {
     tbox_has_flag(get(t), needs_infer)