| Index: Source/heap/Handle.h
|
| diff --git a/Source/heap/Handle.h b/Source/heap/Handle.h
|
| index 12c7aae49800b781b0bb144a329f9b87441a95ca..01355f4d3bfccb439fe2434ab85936da3d1d271b 100644
|
| --- a/Source/heap/Handle.h
|
| +++ b/Source/heap/Handle.h
|
| @@ -774,6 +774,11 @@ struct IsWeak<WebCore::HeapHashTableBacking<Key, Value, Extractor, Traits, KeyTr
|
| static const bool value = Traits::isWeak;
|
| };
|
|
|
| +template<typename T> inline T* getPtr(const WebCore::Member<T>& p)
|
| +{
|
| + return p.get();
|
| +}
|
| +
|
| } // namespace WTF
|
|
|
| #endif
|
|
|