Title: [171387] trunk/Source/_javascript_Core
Revision
171387
Author
bfulg...@apple.com
Date
2014-07-22 20:39:55 -0700 (Tue, 22 Jul 2014)

Log Message

Fix Windows (return a value!)

* jsc.cpp:
(functionQuit): Satisfy compiler's need for
a return value.

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (171386 => 171387)


--- trunk/Source/_javascript_Core/ChangeLog	2014-07-23 03:29:23 UTC (rev 171386)
+++ trunk/Source/_javascript_Core/ChangeLog	2014-07-23 03:39:55 UTC (rev 171387)
@@ -1,5 +1,13 @@
 2014-07-22  Brent Fulgham  <bfulg...@apple.com>
 
+        Fix Windows (return a value!)
+
+        * jsc.cpp:
+        (functionQuit): Satisfy compiler's need for
+        a return value.
+
+2014-07-22  Brent Fulgham  <bfulg...@apple.com>
+
         Fix Windows (sleep -> Sleep)
 
         * jsc.cpp:

Modified: trunk/Source/_javascript_Core/jsc.cpp (171386 => 171387)


--- trunk/Source/_javascript_Core/jsc.cpp	2014-07-23 03:29:23 UTC (rev 171386)
+++ trunk/Source/_javascript_Core/jsc.cpp	2014-07-23 03:39:55 UTC (rev 171387)
@@ -908,7 +908,7 @@
 {
     jscExit(EXIT_SUCCESS);
 
-#if COMPILER(MSVC) && OS(WINCE)
+#if COMPILER(MSVC)
     // Without this, Visual Studio will complain that this method does not return a value.
     return JSValue::encode(jsUndefined());
 #endif
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to