librustc: Remove all uses of static from functions. rs=destatic

This commit is contained in:
Patrick Walton
2013-03-21 19:07:54 -07:00
parent 1616ffd0c2
commit 4634f7edae
79 changed files with 281 additions and 286 deletions

View File

@@ -75,7 +75,7 @@ impl<S:Encoder> Encodable<S> for ident {
}
impl<D:Decoder> Decodable<D> for ident {
static fn decode(d: &D) -> ident {
fn decode(d: &D) -> ident {
let intr = match unsafe {
task::local_data::local_data_get(interner_key!())
} {