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.
+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
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