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
This commit is contained in:
jkummerow@chromium.org 2014-02-19 08:28:14 +00:00
parent 06a41fb259
commit 71be0fdb4e

View File

@ -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_;