Title: [149097] trunk/Source/WTF
Revision
149097
Author
[email protected]
Date
2013-04-25 02:43:31 -0700 (Thu, 25 Apr 2013)

Log Message

Unreviewed WinCE build fix after r148888.

* wtf/Atomics.h: WinCE version of intrin.h is called cmnintrin.h.

Modified Paths

Diff

Modified: trunk/Source/WTF/ChangeLog (149096 => 149097)


--- trunk/Source/WTF/ChangeLog	2013-04-25 09:42:50 UTC (rev 149096)
+++ trunk/Source/WTF/ChangeLog	2013-04-25 09:43:31 UTC (rev 149097)
@@ -1,3 +1,9 @@
+2013-04-25  Patrick Gansterer  <[email protected]>
+
+        Unreviewed WinCE build fix after r148888.
+
+        * wtf/Atomics.h: WinCE version of intrin.h is called cmnintrin.h.
+
 2013-04-24  Roger Fong  <[email protected]>
 
         Have VS2010 WebKit solution look in WebKit_Libraries/lib32 for dependencies.

Modified: trunk/Source/WTF/wtf/Atomics.h (149096 => 149097)


--- trunk/Source/WTF/wtf/Atomics.h	2013-04-25 09:42:50 UTC (rev 149096)
+++ trunk/Source/WTF/wtf/Atomics.h	2013-04-25 09:43:31 UTC (rev 149097)
@@ -64,7 +64,11 @@
 #include <wtf/UnusedParam.h>
 
 #if OS(WINDOWS)
+#if OS(WINCE)
+#include <cmnintrin.h>
+#else
 #include <intrin.h>
+#endif
 #include <windows.h>
 #elif OS(QNX)
 #include <atomic.h>
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to