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/libstd/rt | |
| 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/libstd/rt')
| -rw-r--r-- | src/libstd/rt/thread_local_storage.rs | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/libstd/rt/thread_local_storage.rs b/src/libstd/rt/thread_local_storage.rs index 26eabca2d9d..cd89d09ffc0 100644 --- a/src/libstd/rt/thread_local_storage.rs +++ b/src/libstd/rt/thread_local_storage.rs @@ -84,7 +84,6 @@ pub unsafe fn get(key: Key) -> *mut c_void { } #[cfg(windows, target_arch = "x86")] -#[abi = "stdcall"] extern "stdcall" { fn TlsAlloc() -> DWORD; fn TlsSetValue(dwTlsIndex: DWORD, lpTlsvalue: LPVOID) -> BOOL; |
