Date: Fri, 21 Jun 2024 22:51:58 GMT From: Warner Losh <imp@FreeBSD.org> To: src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org Subject: git: b1cd308b37ea - main - cdefs: Add missing continuation line... Message-ID: <202406212251.45LMpwTJ007053@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
The branch main has been updated by imp: URL: https://cgit.FreeBSD.org/src/commit/?id=b1cd308b37eaacb15fffa584a289a41103018452 commit b1cd308b37eaacb15fffa584a289a41103018452 Author: Warner Losh <imp@FreeBSD.org> AuthorDate: 2024-06-21 22:48:50 +0000 Commit: Warner Losh <imp@FreeBSD.org> CommitDate: 2024-06-21 22:51:44 +0000 cdefs: Add missing continuation line... TinyC has heart-burn on this construct, but gcc and clang like it just fine. Sponsored by: Netflix --- sys/sys/cdefs.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/sys/cdefs.h b/sys/sys/cdefs.h index 8809240ebbf3..6592bd2020ae 100644 --- a/sys/sys/cdefs.h +++ b/sys/sys/cdefs.h @@ -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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202406212251.45LMpwTJ007053>