Title: [219101] trunk/Source/WTF
- Revision
- 219101
- Author
- [email protected]
- Date
- 2017-07-03 15:29:17 -0700 (Mon, 03 Jul 2017)
Log Message
Fix ifndef in Assertions.h
https://bugs.webkit.org/show_bug.cgi?id=174104
Reviewed by Saam Barati.
The ifndef should have been checking for
CRASH_WITH_SECURITY_IMPLICATION_AND_INFO since that is what the
ifndef defines.
* wtf/Assertions.h:
Modified Paths
Diff
Modified: trunk/Source/WTF/ChangeLog (219100 => 219101)
--- trunk/Source/WTF/ChangeLog 2017-07-03 22:28:17 UTC (rev 219100)
+++ trunk/Source/WTF/ChangeLog 2017-07-03 22:29:17 UTC (rev 219101)
@@ -1,3 +1,16 @@
+2017-07-03 Keith Miller <[email protected]>
+
+ Fix ifndef in Assertions.h
+ https://bugs.webkit.org/show_bug.cgi?id=174104
+
+ Reviewed by Saam Barati.
+
+ The ifndef should have been checking for
+ CRASH_WITH_SECURITY_IMPLICATION_AND_INFO since that is what the
+ ifndef defines.
+
+ * wtf/Assertions.h:
+
2017-07-03 Andy Estes <[email protected]>
[Xcode] Add an experimental setting to build with ccache
Modified: trunk/Source/WTF/wtf/Assertions.h (219100 => 219101)
--- trunk/Source/WTF/wtf/Assertions.h 2017-07-03 22:28:17 UTC (rev 219100)
+++ trunk/Source/WTF/wtf/Assertions.h 2017-07-03 22:29:17 UTC (rev 219101)
@@ -492,7 +492,7 @@
}
}
-#ifndef INLINE_CRASH_WITH_SECURITY_IMPLICATION_AND_INFO
+#ifndef CRASH_WITH_SECURITY_IMPLICATION_AND_INFO
// This is useful if you are going to stuff data into registers before crashing. Like the crashWithInfo functions below...
// GCC doesn't like the ##__VA_ARGS__ here since this macro is called from another macro so we just CRASH instead there.
#if COMPILER(CLANG) || COMPILER(MSVC)
@@ -503,7 +503,7 @@
#else
#define CRASH_WITH_SECURITY_IMPLICATION_AND_INFO(...) CRASH()
#endif
-#endif // INLINE_CRASH_WITH_SECURITY_IMPLICATION_AND_INFO
+#endif // CRASH_WITH_SECURITY_IMPLICATION_AND_INFO
#endif // __cplusplus
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes