Title: [108265] trunk/Source/_javascript_Core
Revision
108265
Author
[email protected]
Date
2012-02-20 15:37:01 -0800 (Mon, 20 Feb 2012)

Log Message

Fix Visual Studio 2010 build.

* bytecompiler/NodesCodegen.cpp:
(JSC::PropertyListNode::emitBytecode):

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (108264 => 108265)


--- trunk/Source/_javascript_Core/ChangeLog	2012-02-20 23:22:28 UTC (rev 108264)
+++ trunk/Source/_javascript_Core/ChangeLog	2012-02-20 23:37:01 UTC (rev 108265)
@@ -1,3 +1,10 @@
+2012-02-20  Patrick Gansterer  <[email protected]>
+
+        Fix Visual Studio 2010 build.
+
+        * bytecompiler/NodesCodegen.cpp:
+        (JSC::PropertyListNode::emitBytecode):
+
 2012-02-16  Gavin Barraclough  <[email protected]>
 
         Move special __proto__ property to Object.prototype

Modified: trunk/Source/_javascript_Core/bytecompiler/NodesCodegen.cpp (108264 => 108265)


--- trunk/Source/_javascript_Core/bytecompiler/NodesCodegen.cpp	2012-02-20 23:22:28 UTC (rev 108264)
+++ trunk/Source/_javascript_Core/bytecompiler/NodesCodegen.cpp	2012-02-20 23:37:01 UTC (rev 108265)
@@ -255,7 +255,7 @@
             if (node->m_type == PropertyNode::Constant)
                 continue;
 
-            GetterSetterPair pair(node, 0);
+            GetterSetterPair pair(node, static_cast<PropertyNode*>(0));
             std::pair<GetterSetterMap::iterator, bool> result = map.add(node->name().impl(), pair);
             if (!result.second)
                 result.first->second.second = node;
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to