Blame SOURCES/glibc-rh1505492-undef-37.patch

00db10
commit 6680738a18fc219de2e4f7be1d53e4fb251f1166
00db10
Author: Siddhesh Poyarekar <siddhesh@redhat.com>
00db10
Date:   Wed Jul 9 10:36:23 2014 +0530
00db10
00db10
    Fix Wundef warning for __cplusplus
00db10
    
00db10
    All current uses of the __cplusplus macro only check if it is defined
00db10
    or not.  Fix this #if to use $ifdef like the rest of the code.
00db10
00db10
diff --git a/sysdeps/generic/unwind-pe.h b/sysdeps/generic/unwind-pe.h
00db10
index 3985fec998a2083d..b190cb34a102f5f9 100644
00db10
--- a/sysdeps/generic/unwind-pe.h
00db10
+++ b/sysdeps/generic/unwind-pe.h
00db10
@@ -22,7 +22,7 @@
00db10
    than duplicating code, however.  */
00db10
 
00db10
 /* If using C++, references to abort have to be qualified with std::.  */
00db10
-#if __cplusplus
00db10
+#ifdef __cplusplus
00db10
 #define __gxx_abort std::abort
00db10
 #else
00db10
 #define __gxx_abort abort