mirror of
git://sourceware.org/git/glibc.git
synced 2025-04-06 14:10:30 +08:00
(__WAIT_INT): Don't use complex version with __typeof for C++ since
this fails for class members.
This commit is contained in:
parent
4a301c0019
commit
dec3f3e9f4
@ -1,4 +1,4 @@
|
||||
/* Copyright (C) 1991, 92, 93, 94, 96 Free Software Foundation, Inc.
|
||||
/* Copyright (C) 1991, 92, 93, 94, 96, 97 Free Software Foundation, Inc.
|
||||
This file is part of the GNU C Library.
|
||||
|
||||
The GNU C Library is free software; you can redistribute it and/or
|
||||
@ -38,7 +38,7 @@ __BEGIN_DECLS
|
||||
/* Lots of hair to allow traditional BSD use of `union wait'
|
||||
as well as POSIX.1 use of `int' for the status word. */
|
||||
|
||||
#ifdef __GNUC__
|
||||
#if defined __GNUC__ && !defined __cplusplus
|
||||
#define __WAIT_INT(status) \
|
||||
(__extension__ ({ union { __typeof(status) __in; int __i; } __u; \
|
||||
__u.__in = (status); __u.__i; }))
|
||||
|
Loading…
x
Reference in New Issue
Block a user