File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -142,7 +142,7 @@ fi])# PGAC_C_STATIC_ASSERT
142
142
AC_DEFUN ( [ PGAC_C_TYPEOF] ,
143
143
[ AC_CACHE_CHECK ( for typeof , pgac_cv_c_typeof ,
144
144
[ pgac_cv_c_typeof=no
145
- for pgac_kw in typeof __typeof__ decltype ; do
145
+ for pgac_kw in typeof __typeof__; do
146
146
AC_COMPILE_IFELSE ( [ AC_LANG_PROGRAM ( [ ] ,
147
147
[ int x = 0;
148
148
$pgac_kw(x) y;
Original file line number Diff line number Diff line change @@ -14344,7 +14344,7 @@ if ${pgac_cv_c_typeof+:} false; then :
14344
14344
$as_echo_n "(cached) " >&6
14345
14345
else
14346
14346
pgac_cv_c_typeof=no
14347
- for pgac_kw in typeof __typeof__ decltype ; do
14347
+ for pgac_kw in typeof __typeof__; do
14348
14348
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
14349
14349
/* end confdefs.h. */
14350
14350
Original file line number Diff line number Diff line change @@ -2540,7 +2540,7 @@ endif
2540
2540
2541
2541
# Check if the C compiler understands typeof or a variant. Define
2542
2542
# HAVE_TYPEOF if so, and define 'typeof' to the actual key word.
2543
- foreach kw : [' typeof' , ' __typeof__' , ' decltype ' ]
2543
+ foreach kw : [' typeof' , ' __typeof__' ]
2544
2544
if cc.compiles('''
2545
2545
int main(void)
2546
2546
{
You can’t perform that action at this time.
0 commit comments