Title: [102550] trunk/Source/_javascript_Core
Revision
102550
Author
[email protected]
Date
2011-12-11 17:22:10 -0800 (Sun, 11 Dec 2011)

Log Message

Fix another signed vs. unsigned warning

* runtime/ArgList.h:
(JSC::MarkedArgumentBuffer::~MarkedArgumentBuffer):

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (102549 => 102550)


--- trunk/Source/_javascript_Core/ChangeLog	2011-12-12 01:05:26 UTC (rev 102549)
+++ trunk/Source/_javascript_Core/ChangeLog	2011-12-12 01:22:10 UTC (rev 102550)
@@ -1,5 +1,12 @@
 2011-12-11  Sam Weinig  <[email protected]>
 
+        Fix another signed vs. unsigned warning
+
+        * runtime/ArgList.h:
+        (JSC::MarkedArgumentBuffer::~MarkedArgumentBuffer):
+
+2011-12-11  Sam Weinig  <[email protected]>
+
         Fix a signed vs. unsigned warning.
 
         * runtime/ArgList.cpp:

Modified: trunk/Source/_javascript_Core/runtime/ArgList.h (102549 => 102550)


--- trunk/Source/_javascript_Core/runtime/ArgList.h	2011-12-12 01:05:26 UTC (rev 102549)
+++ trunk/Source/_javascript_Core/runtime/ArgList.h	2011-12-12 01:22:10 UTC (rev 102550)
@@ -58,7 +58,7 @@
             if (m_markSet)
                 m_markSet->remove(this);
 
-            if (m_capacity != inlineCapacity)
+            if (m_capacity != static_cast<int>(inlineCapacity))
                 delete [] &m_buffer[-(m_capacity - 1)];
         }
 
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to