Skip to content

Commit 95d22a3

Browse files
committed
Fix merge fallout
1 parent 1662bd3 commit 95d22a3

File tree

1 file changed

+10
-7
lines changed

1 file changed

+10
-7
lines changed

src/librustc/middle/trans/callee.rs

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,16 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11-
//!
12-
//
13-
// Handles translation of callees as well as other call-related
14-
// things. Callees are a superset of normal rust values and sometimes
15-
// have different representations. In particular, top-level fn items
16-
// and methods are represented as just a fn ptr and not a full
17-
// closure.
11+
/*!
12+
*
13+
* Handles translation of callees as well as other call-related
14+
* things. Callees are a superset of normal rust values and sometimes
15+
* have different representations. In particular, top-level fn items
16+
* and methods are represented as just a fn ptr and not a full
17+
* closure.
18+
*/
19+
20+
use std::vec;
1821

1922
use back::abi;
2023
use driver::session;

0 commit comments

Comments
 (0)