We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5837343 commit 618b142Copy full SHA for 618b142
deps/v8/src/zone-allocator.h
@@ -50,10 +50,10 @@ class zone_allocator {
50
}
51
void destroy(pointer p) { p->~T(); }
52
53
- bool operator==(zone_allocator const& other) {
+ bool operator==(zone_allocator const& other) const {
54
return zone_ == other.zone_;
55
56
- bool operator!=(zone_allocator const& other) {
+ bool operator!=(zone_allocator const& other) const {
57
return zone_ != other.zone_;
58
59
0 commit comments