Title: [112180] trunk/Source/WTF
- Revision
- 112180
- Author
- [email protected]
- Date
- 2012-03-26 17:12:20 -0700 (Mon, 26 Mar 2012)
Log Message
Touch BitVector as a speculative fix for Chromium Linux.
* wtf/BitVector.h:
(BitVector):
Modified Paths
Diff
Modified: trunk/Source/WTF/ChangeLog (112179 => 112180)
--- trunk/Source/WTF/ChangeLog 2012-03-27 00:10:21 UTC (rev 112179)
+++ trunk/Source/WTF/ChangeLog 2012-03-27 00:12:20 UTC (rev 112180)
@@ -1,3 +1,10 @@
+2012-03-26 Ryosuke Niwa <[email protected]>
+
+ Touch BitVector as a speculative fix for Chromium Linux.
+
+ * wtf/BitVector.h:
+ (BitVector):
+
2012-03-23 Ryosuke Niwa <[email protected]>
cssText should use shorthand notations
Modified: trunk/Source/WTF/wtf/BitVector.h (112179 => 112180)
--- trunk/Source/WTF/wtf/BitVector.h 2012-03-27 00:10:21 UTC (rev 112179)
+++ trunk/Source/WTF/wtf/BitVector.h 2012-03-27 00:12:20 UTC (rev 112180)
@@ -175,17 +175,17 @@
{
return sizeof(void*) << 3;
}
-
+
static unsigned maxInlineBits()
{
return bitsInPointer() - 1;
}
-
+
static size_t byteCount(size_t bitCount)
{
return (bitCount + 7) >> 3;
}
-
+
static uintptr_t makeInlineBits(uintptr_t bits)
{
ASSERT(!(bits & (static_cast<uintptr_t>(1) << maxInlineBits())));
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes