mirror of
https://abf.rosa.ru/djam/chromium-browser-stable.git
synced 2025-02-23 22:52:49 +00:00
11 lines
598 B
Diff
11 lines
598 B
Diff
--- chromium-19.0.1077.3/third_party/WebKit/Source/WTF/wtf/RefPtr.h.orig 2012-06-19 17:57:14.000000000 +0000
|
|
+++ chromium-19.0.1077.3/third_party/WebKit/Source/WTF/wtf/RefPtr.h 2012-06-19 17:57:25.000000000 +0000
|
|
@@ -55,7 +55,7 @@ namespace WTF {
|
|
RefPtr(HashTableDeletedValueType) : m_ptr(hashTableDeletedValue()) { }
|
|
bool isHashTableDeletedValue() const { return m_ptr == hashTableDeletedValue(); }
|
|
|
|
- ALWAYS_INLINE ~RefPtr() { derefIfNotNull(m_ptr); }
|
|
+ /*ALWAYS_INLINE*/ ~RefPtr() { derefIfNotNull(m_ptr); }
|
|
|
|
T* get() const { return m_ptr; }
|
|
|