]> git.lizzy.rs Git - rust.git/commitdiff
Fix merge fallout
authorCorey Richardson <corey@octayn.net>
Sat, 29 Jun 2013 10:11:14 +0000 (06:11 -0400)
committerCorey Richardson <corey@octayn.net>
Sat, 29 Jun 2013 15:20:04 +0000 (11:20 -0400)
src/librustc/middle/trans/callee.rs

index 8f9451510afac237f9d8615869f6b478fe65274b..852a41ee10cf032bc8074166debed7d5982179b9 100644 (file)
@@ -8,13 +8,16 @@
 // option. This file may not be copied, modified, or distributed
 // except according to those terms.
 
-//!
-//
-// Handles translation of callees as well as other call-related
-// things.  Callees are a superset of normal rust values and sometimes
-// have different representations.  In particular, top-level fn items
-// and methods are represented as just a fn ptr and not a full
-// closure.
+/*!
+ * 
+ * Handles translation of callees as well as other call-related
+ * things.  Callees are a superset of normal rust values and sometimes
+ * have different representations.  In particular, top-level fn items
+ * and methods are represented as just a fn ptr and not a full
+ * closure.
+ */
+
+use std::vec;
 
 use back::abi;
 use driver::session;