diff options
Diffstat (limited to 'WebCore/css/CSSPrimitiveValue.h')
-rw-r--r-- | WebCore/css/CSSPrimitiveValue.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/WebCore/css/CSSPrimitiveValue.h b/WebCore/css/CSSPrimitiveValue.h index 943ad04..c2a4dc3 100644 --- a/WebCore/css/CSSPrimitiveValue.h +++ b/WebCore/css/CSSPrimitiveValue.h @@ -200,7 +200,8 @@ private: virtual unsigned short cssValueType() const; - int m_type; + int m_type : 31; + mutable unsigned m_hasCachedCSSText : 1; union { int ident; double num; @@ -211,7 +212,6 @@ private: Pair* pair; DashboardRegion* region; } m_value; - mutable String m_cachedCSSText; }; } // namespace WebCore |