Skip to content
This repository has been archived by the owner on Oct 12, 2022. It is now read-only.

Commit

Permalink
Remove redundant and deprecated __thread annotation
Browse files Browse the repository at this point in the history
  • Loading branch information
braddr committed Feb 6, 2011
1 parent 5403b3d commit 5f8db8e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/core/thread.d
Expand Up @@ -143,8 +143,8 @@ version( Windows )
// these are defined in dm\src\win32\tlsseg.asm by DMC.
extern (C)
{
extern __thread int _tlsstart;
extern __thread int _tlsend;
extern int _tlsstart;
extern int _tlsend;
}
}
else
Expand Down Expand Up @@ -265,8 +265,8 @@ else version( Posix )
{
extern (C)
{
extern __thread int _tlsstart;
extern __thread int _tlsend;
extern int _tlsstart;
extern int _tlsend;
}
}
else version( OSX )
Expand Down

0 comments on commit 5f8db8e

Please sign in to comment.