summaryrefslogtreecommitdiffstats
path: root/JavaScriptCore/wtf/ListHashSet.h
diff options
context:
space:
mode:
Diffstat (limited to 'JavaScriptCore/wtf/ListHashSet.h')
-rw-r--r--JavaScriptCore/wtf/ListHashSet.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/JavaScriptCore/wtf/ListHashSet.h b/JavaScriptCore/wtf/ListHashSet.h
index 09355ad..e14ac45 100644
--- a/JavaScriptCore/wtf/ListHashSet.h
+++ b/JavaScriptCore/wtf/ListHashSet.h
@@ -24,6 +24,7 @@
#include "Assertions.h"
#include "HashSet.h"
#include "OwnPtr.h"
+#include "StdLibExtras.h"
namespace WTF {
@@ -171,7 +172,7 @@ namespace WTF {
}
private:
- Node* pool() { return reinterpret_cast<Node*>(m_pool.pool); }
+ Node* pool() { return reinterpret_cast_ptr<Node*>(m_pool.pool); }
Node* pastPool() { return pool() + m_poolSize; }
bool inPool(Node* node)