diff options
Diffstat (limited to 'libX11/include/X11/Xcms.h')
-rw-r--r-- | libX11/include/X11/Xcms.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/libX11/include/X11/Xcms.h b/libX11/include/X11/Xcms.h index 8151fd1f3..663185410 100644 --- a/libX11/include/X11/Xcms.h +++ b/libX11/include/X11/Xcms.h @@ -31,6 +31,14 @@ #include <X11/Xlib.h> +/* The Xcms structs are full of implicit padding to properly align members. + We can't clean that up without breaking ABI, so tell clang not to bother + complaining about it. */ +#ifdef __clang__ +#pragma clang diagnostic push +#pragma clang diagnostic ignored "-Wpadded" +#endif + /* * XCMS Status Values */ @@ -798,6 +806,10 @@ extern Visual *XcmsVisualOfCCC ( XcmsCCC /* ccc */ ); +#ifdef __clang__ +#pragma clang diagnostic pop +#endif + _XFUNCPROTOEND #endif /* _X11_XCMS_H_ */ |