mirror of
https://github.com/opnsense/src.git
synced 2026-06-06 15:22:34 -04:00
cdefs: Add missing continuation line...
TinyC has heart-burn on this construct, but gcc and clang like it just fine. Sponsored by: Netflix
This commit is contained in:
parent
a7de510685
commit
b1cd308b37
1 changed files with 1 additions and 1 deletions
|
|
@ -213,7 +213,7 @@
|
|||
#endif
|
||||
|
||||
#if !__has_extension(c_thread_local)
|
||||
#if (defined(__cplusplus) && __cplusplus >= 201103L) ||
|
||||
#if (defined(__cplusplus) && __cplusplus >= 201103L) || \
|
||||
__has_extension(cxx_thread_local)
|
||||
#define _Thread_local thread_local
|
||||
#else
|
||||
|
|
|
|||
Loading…
Reference in a new issue