diff options
| author | Steve Klabnik <steve@steveklabnik.com> | 2013-09-29 07:46:26 -0700 |
|---|---|---|
| committer | Steve Klabnik <steve@steveklabnik.com> | 2013-10-14 13:10:36 +0200 |
| commit | 16fc6a694cac35ce962e98e180354cbce6a72f54 (patch) | |
| tree | 20b5933785ac3aea831240447058df93be33ff1a /src/libsyntax | |
| parent | 5b10781c7b95a182da7c85af80a706f4ca7a4b65 (diff) | |
| download | rust-16fc6a694cac35ce962e98e180354cbce6a72f54.tar.gz rust-16fc6a694cac35ce962e98e180354cbce6a72f54.zip | |
Remove unused abi attributes.
They've been replaced by putting the name on the extern block.
#[abi = "foo"]
goes to
extern "foo" { }
Closes #9483.
Diffstat (limited to 'src/libsyntax')
| -rw-r--r-- | src/libsyntax/ext/expand.rs | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/libsyntax/ext/expand.rs b/src/libsyntax/ext/expand.rs index 01d0fd80672..c936cb9ab90 100644 --- a/src/libsyntax/ext/expand.rs +++ b/src/libsyntax/ext/expand.rs @@ -1059,7 +1059,6 @@ pub fn std_macros() -> @str { // It is intended to be used like: // // externfn!(#[nolink] - // #[abi = \"cdecl\"] // fn memcmp(cx: *u8, ct: *u8, n: u32) -> u32) // // Due to limitations in the macro parser, this pattern must be |
