summaryrefslogtreecommitdiffstats
path: root/src/handles-inl.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/handles-inl.h')
-rw-r--r--src/handles-inl.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/handles-inl.h b/src/handles-inl.h
index 8478bb5c..bf19f5f8 100644
--- a/src/handles-inl.h
+++ b/src/handles-inl.h
@@ -47,7 +47,7 @@ template <class T>
inline T* Handle<T>::operator*() const {
ASSERT(location_ != NULL);
ASSERT(reinterpret_cast<Address>(*location_) != kHandleZapValue);
- return *location_;
+ return *BitCast<T**>(location_);
}