Chromium Code Reviews| Index: runtime/vm/bit_vector.h |
| =================================================================== |
| --- runtime/vm/bit_vector.h (revision 43075) |
| +++ runtime/vm/bit_vector.h (working copy) |
| @@ -51,14 +51,6 @@ |
| Clear(); |
| } |
| - // DEPRECATED: Use Zone version. |
| - BitVector(Isolate* isolate, intptr_t length) |
| - : length_(length), |
| - data_length_(SizeFor(length)), |
| - data_(isolate->current_zone()->Alloc<uword>(data_length_)) { |
| - Clear(); |
| - } |
| - |
| void CopyFrom(const BitVector* other) { |
| Clear(); |
| AddAll(other); |