Message ID | 20211221221329.347210-1-eggert@cs.ucla.edu |
---|---|
State | New |
Headers | show |
Series | cdefs.h: fix "__clang_major" typo | expand |
Context | Check | Description |
---|---|---|
dj/TryBot-apply_patch | success | Patch applied to master at the time it was sent |
dj/TryBot-32bit | success | Build for i686 |
On 21/12/2021 19:13, Paul Eggert wrote: > * misc/sys/cdefs.h: Fix misspelling of "__clang_major__". LGTM, thanks. Reviewed-by: Adhemerval Zanella <adhemerval.zanella@linaro.org> > --- > misc/sys/cdefs.h | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/misc/sys/cdefs.h b/misc/sys/cdefs.h > index a05b538579..f6e1db1954 100644 > --- a/misc/sys/cdefs.h > +++ b/misc/sys/cdefs.h > @@ -81,7 +81,7 @@ > # define __NTH(fct) __attribute__ ((__nothrow__ __LEAF)) fct > # define __NTHNL(fct) __attribute__ ((__nothrow__)) fct > # else > -# if defined __cplusplus && (__GNUC_PREREQ (2,8) || __clang_major >= 4) > +# if defined __cplusplus && (__GNUC_PREREQ (2,8) || __clang_major__ >= 4) > # if __cplusplus >= 201103L > # define __THROW noexcept (true) > # else
diff --git a/misc/sys/cdefs.h b/misc/sys/cdefs.h index a05b538579..f6e1db1954 100644 --- a/misc/sys/cdefs.h +++ b/misc/sys/cdefs.h @@ -81,7 +81,7 @@ # define __NTH(fct) __attribute__ ((__nothrow__ __LEAF)) fct # define __NTHNL(fct) __attribute__ ((__nothrow__)) fct # else -# if defined __cplusplus && (__GNUC_PREREQ (2,8) || __clang_major >= 4) +# if defined __cplusplus && (__GNUC_PREREQ (2,8) || __clang_major__ >= 4) # if __cplusplus >= 201103L # define __THROW noexcept (true) # else