Title: [208957] trunk/Source/_javascript_Core
Revision
208957
Author
[email protected]
Date
2016-11-21 19:35:25 -0800 (Mon, 21 Nov 2016)

Log Message

Removed an extra space character at the end of line.

Not reviewed.

* runtime/JSCell.cpp:
(JSC::JSCell::toNumber):

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (208956 => 208957)


--- trunk/Source/_javascript_Core/ChangeLog	2016-11-22 02:05:27 UTC (rev 208956)
+++ trunk/Source/_javascript_Core/ChangeLog	2016-11-22 03:35:25 UTC (rev 208957)
@@ -1,5 +1,14 @@
 2016-11-21  Mark Lam  <[email protected]>
 
+        Removed an extra space character at the end of line.
+
+        Not reviewed.
+
+        * runtime/JSCell.cpp:
+        (JSC::JSCell::toNumber):
+
+2016-11-21  Mark Lam  <[email protected]>
+
         Fix exception scope verification failures in FunctionConstructor.cpp.
         https://bugs.webkit.org/show_bug.cgi?id=165011
 

Modified: trunk/Source/_javascript_Core/runtime/JSCell.cpp (208956 => 208957)


--- trunk/Source/_javascript_Core/runtime/JSCell.cpp	2016-11-22 02:05:27 UTC (rev 208956)
+++ trunk/Source/_javascript_Core/runtime/JSCell.cpp	2016-11-22 03:35:25 UTC (rev 208957)
@@ -161,7 +161,7 @@
 }
 
 double JSCell::toNumber(ExecState* exec) const
-{ 
+{
     if (isString())
         return static_cast<const JSString*>(this)->toNumber(exec);
     if (isSymbol())
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to