From 6680738a18fc219de2e4f7be1d53e4fb251f1166 Mon Sep 17 00:00:00 2001 From: Siddhesh Poyarekar Date: Wed, 9 Jul 2014 10:36:23 +0530 Subject: [PATCH] Fix Wundef warning for __cplusplus All current uses of the __cplusplus macro only check if it is defined or not. Fix this #if to use $ifdef like the rest of the code. --- ChangeLog | 5 +++++ sysdeps/generic/unwind-pe.h | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 5892add..b70d337 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2014-07-09 Siddhesh Poyarekar + + * sysdeps/generic/unwind-pe.h: Only check if __cplusplus is + defined. + 2014-07-08 Siddhesh Poyarekar * resolv/res_query.c (__libc_res_nsearch): Dereference resplen2 diff --git a/sysdeps/generic/unwind-pe.h b/sysdeps/generic/unwind-pe.h index a4afe5c..a6ee414 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 -- 2.7.4