diff options
author | Thomas E. Dickey <dickey@his.com> | 2023-05-27 00:34:15 +0000 |
---|---|---|
committer | Thomas E. Dickey <dickey@his.com> | 2023-05-27 00:34:15 +0000 |
commit | 84fa033e9f7f1567f6174bf5e18cb7fb37914aa7 (patch) | |
tree | dfa4997e249b67dc6d480742a3ce315ff27c7d9d /include/X11/Intrinsic.h | |
parent | 64fca6a2d7cf4fee28ca2277ca6a8b7b32aee66e (diff) |
issue #17: avoid _Static_assert from c++
Diffstat (limited to 'include/X11/Intrinsic.h')
-rw-r--r-- | include/X11/Intrinsic.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/X11/Intrinsic.h b/include/X11/Intrinsic.h index 71199e7..94197f9 100644 --- a/include/X11/Intrinsic.h +++ b/include/X11/Intrinsic.h @@ -174,7 +174,7 @@ typedef unsigned short Dimension; /* Size in pixels */ typedef short Position; /* Offset from 0 coordinate */ typedef void* XtPointer; -#if __STDC_VERSION__ >= 201112L +#if __STDC_VERSION__ >= 201112L && !defined(__cplusplus) _Static_assert(sizeof(XtArgVal) >= sizeof(XtPointer), "XtArgVal too small"); _Static_assert(sizeof(XtArgVal) >= sizeof(long), "XtArgVal too small"); #endif |