diff options
| -rw-r--r-- | src/librustc/middle/trans/callee.rs | 17 |
1 files changed, 10 insertions, 7 deletions
diff --git a/src/librustc/middle/trans/callee.rs b/src/librustc/middle/trans/callee.rs index 8f9451510af..852a41ee10c 100644 --- a/src/librustc/middle/trans/callee.rs +++ b/src/librustc/middle/trans/callee.rs @@ -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; |
