diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | sysdeps/generic/unwind-pe.h | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog index 5892add379..b70d3370a5 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2014-07-09 Siddhesh Poyarekar <siddhesh@redhat.com> + + * sysdeps/generic/unwind-pe.h: Only check if __cplusplus is + defined. + 2014-07-08 Siddhesh Poyarekar <siddhesh@redhat.com> * resolv/res_query.c (__libc_res_nsearch): Dereference resplen2 diff --git a/sysdeps/generic/unwind-pe.h b/sysdeps/generic/unwind-pe.h index a4afe5c757..a6ee4146fd 100644 --- a/sysdeps/generic/unwind-pe.h +++ b/sysdeps/generic/unwind-pe.h @@ -22,7 +22,7 @@ than duplicating code, however. */ /* If using C++, references to abort have to be qualified with std::. */ -#if __cplusplus +#ifdef __cplusplus #define __gxx_abort std::abort #else #define __gxx_abort abort |