| Index: runtime/vm/hash_map_test.cc
|
| diff --git a/runtime/vm/hash_map_test.cc b/runtime/vm/hash_map_test.cc
|
| index 7830b85bcb6aa28c6b9346bceb8799cfb04e9e24..b3afddedf4942cecffdd117660d7e59a9cd875f6 100644
|
| --- a/runtime/vm/hash_map_test.cc
|
| +++ b/runtime/vm/hash_map_test.cc
|
| @@ -10,9 +10,10 @@ namespace dart {
|
|
|
| class TestValue {
|
| public:
|
| - explicit TestValue(intptr_t x) : x_(x) { }
|
| + explicit TestValue(intptr_t x) : x_(x) {}
|
| intptr_t Hashcode() const { return x_ & 1; }
|
| bool Equals(TestValue* other) { return x_ == other->x_; }
|
| +
|
| private:
|
| intptr_t x_;
|
| };
|
|
|