Index: Source/core/rendering/RenderLayerScrollableArea.cpp |
diff --git a/Source/core/rendering/RenderLayerScrollableArea.cpp b/Source/core/rendering/RenderLayerScrollableArea.cpp |
index d2689a4f0f0f53dbaec48383b9fd718d6cea7ffc..efc2714b98f8475ce3b66d5b75716619a2e1113c 100644 |
--- a/Source/core/rendering/RenderLayerScrollableArea.cpp |
+++ b/Source/core/rendering/RenderLayerScrollableArea.cpp |
@@ -1402,7 +1402,7 @@ void RenderLayerScrollableArea::updateNeedsCompositedScrolling() |
bool RenderLayerScrollableArea::setNeedsCompositedScrolling(bool needsCompositedScrolling) |
Nico
2013/11/06 05:03:14
same ugh, same comment about the next line
|
{ |
- if (m_needsCompositedScrolling == needsCompositedScrolling) |
+ if (static_cast<bool>(m_needsCompositedScrolling) == needsCompositedScrolling) |
return false; |
// Count the total number of RenderLayers which need composited scrolling at |