summaryrefslogtreecommitdiffstats
path: root/JavaScriptCore/wtf/RefPtr.h
diff options
context:
space:
mode:
Diffstat (limited to 'JavaScriptCore/wtf/RefPtr.h')
-rw-r--r--JavaScriptCore/wtf/RefPtr.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/JavaScriptCore/wtf/RefPtr.h b/JavaScriptCore/wtf/RefPtr.h
index 84e841c..eed7933 100644
--- a/JavaScriptCore/wtf/RefPtr.h
+++ b/JavaScriptCore/wtf/RefPtr.h
@@ -18,6 +18,8 @@
*
*/
+// RefPtr and PassRefPtr are documented at http://webkit.org/coding/RefPtr.html
+
#ifndef WTF_RefPtr_h
#define WTF_RefPtr_h
@@ -79,9 +81,9 @@ namespace WTF {
void swap(RefPtr&);
- private:
static T* hashTableDeletedValue() { return reinterpret_cast<T*>(-1); }
+ private:
T* m_ptr;
};