diff options
| author | bors <bors@rust-lang.org> | 2013-10-14 07:26:47 -0700 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2013-10-14 07:26:47 -0700 |
| commit | c8e77d5586aed50821e0b9361b2e24c96ade816c (patch) | |
| tree | fe5ccc6b0b4ccbbd70cf48925e22cccf3d3c0a72 /src/libsyntax | |
| parent | b571039021e031888cea4e0b53d8f9b4e81c6d31 (diff) | |
| parent | 309ab958e6cf78caf188f6dcbf9ce35d9ba62468 (diff) | |
| download | rust-c8e77d5586aed50821e0b9361b2e24c96ade816c.tar.gz rust-c8e77d5586aed50821e0b9361b2e24c96ade816c.zip | |
auto merge of #9606 : steveklabnik/rust/abi_removal, r=alexcrichton
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 |
