Title: [99495] trunk/Source/_javascript_Core
Revision
99495
Author
dslo...@google.com
Date
2011-11-07 15:49:17 -0800 (Mon, 07 Nov 2011)

Log Message

Unreviewed. Release build fix.

* parser/Lexer.cpp:
(JSC::assertCharIsIn8BitRange):

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (99494 => 99495)


--- trunk/Source/_javascript_Core/ChangeLog	2011-11-07 23:46:08 UTC (rev 99494)
+++ trunk/Source/_javascript_Core/ChangeLog	2011-11-07 23:49:17 UTC (rev 99495)
@@ -1,3 +1,10 @@
+2011-11-07  Dmitry Lomov  <dslo...@google.com>
+
+        Unreviewed. Release build fix.
+
+        * parser/Lexer.cpp:
+        (JSC::assertCharIsIn8BitRange):
+
 2011-11-07  Filip Pizlo  <fpi...@apple.com>
 
         Switch the value profiler back to 8 buckets, because we suspect that while this

Modified: trunk/Source/_javascript_Core/parser/Lexer.cpp (99494 => 99495)


--- trunk/Source/_javascript_Core/parser/Lexer.cpp	2011-11-07 23:46:08 UTC (rev 99494)
+++ trunk/Source/_javascript_Core/parser/Lexer.cpp	2011-11-07 23:49:17 UTC (rev 99495)
@@ -428,6 +428,7 @@
 template <typename T>
 inline void assertCharIsIn8BitRange(T c)
 {
+    UNUSED_PARAM(c);
     ASSERT(c >= 0);
     ASSERT(c <= 0xFF);
 }
@@ -435,6 +436,7 @@
 template <>
 inline void assertCharIsIn8BitRange(UChar c)
 {
+    UNUSED_PARAM(c);
     ASSERT(c <= 0xFF);
 }
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to