Remove lint case for _Thread_local.

I added this block, knowing that lint does not support _Thread_local.
When linting, we could argue that we don't care about TLS (yet). It
seems, however, that external pieces of software also sometimes do a
-Dlint, regex the output and compile it again.

Reported by:	swills
This commit is contained in:
Ed Schouten 2013-05-19 07:44:01 +00:00
parent a9f506f712
commit b8501ae829

View File

@ -292,8 +292,6 @@
#if /* (defined(__cplusplus) && __cplusplus >= 201103L) || */ \
__has_extension(cxx_thread_local)
#define _Thread_local thread_local
#elif defined(lint)
#define _Thread_local
#else
#define _Thread_local __thread
#endif