| Index: sky/engine/core/css/CSSValue.h
|
| diff --git a/sky/engine/core/css/CSSValue.h b/sky/engine/core/css/CSSValue.h
|
| index 148ef7250a1cfe3ca2970428b9915f5024fec6ea..b2a42f446b54d45ab26c2247ae452f7ce7014285 100644
|
| --- a/sky/engine/core/css/CSSValue.h
|
| +++ b/sky/engine/core/css/CSSValue.h
|
| @@ -241,12 +241,6 @@ inline bool compareCSSValuePtr(const RawPtr<CSSValueType>& first, const RawPtr<C
|
| return first ? second && first->equals(*second) : !second;
|
| }
|
|
|
| -template<typename CSSValueType>
|
| -inline bool compareCSSValuePtr(const Member<CSSValueType>& first, const Member<CSSValueType>& second)
|
| -{
|
| - return first ? second && first->equals(*second) : !second;
|
| -}
|
| -
|
| #define DEFINE_CSS_VALUE_TYPE_CASTS(thisType, predicate) \
|
| DEFINE_TYPE_CASTS(thisType, CSSValue, value, value->predicate, value.predicate)
|
|
|
|
|