Fix zone_allocator to support comparison

R=danno@chromium.org

Review URL: https://codereview.chromium.org/171713004

Patch from Daniel Clifford <danno@chromium.org>.

git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@19468 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
parent 06a41fb2
......@@ -69,7 +69,14 @@ class zone_allocator {
void construct(pointer p, const T& val) {
new(static_cast<void*>(p)) T(val);
}
void destroy(pointer p) { (static_cast<T*>(p))->~T(); }
void destroy(pointer p) { p->~T(); }
bool operator==(zone_allocator const& other) {
return zone_ == other.zone_;
}
bool operator!=(zone_allocator const& other) {
return zone_ != other.zone_;
}
private:
Zone* zone_;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment