| OLD | NEW |
| 1 // Copyright 2013 the V8 project authors. All rights reserved. | 1 // Copyright 2013 the V8 project authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef V8_HYDROGEN_UNIQUE_H_ | 5 #ifndef V8_HYDROGEN_UNIQUE_H_ |
| 6 #define V8_HYDROGEN_UNIQUE_H_ | 6 #define V8_HYDROGEN_UNIQUE_H_ |
| 7 | 7 |
| 8 #include "src/handles.h" | 8 #include "src/handles-inl.h" // TODO(everyone): Fix our inl.h crap |
| 9 #include "src/objects.h" | 9 #include "src/objects-inl.h" // TODO(everyone): Fix our inl.h crap |
| 10 #include "src/string-stream.h" | 10 #include "src/string-stream.h" |
| 11 #include "src/utils.h" | 11 #include "src/utils.h" |
| 12 #include "src/zone.h" | 12 #include "src/zone.h" |
| 13 | 13 |
| 14 namespace v8 { | 14 namespace v8 { |
| 15 namespace internal { | 15 namespace internal { |
| 16 | 16 |
| 17 | 17 |
| 18 template <typename T> | 18 template <typename T> |
| 19 class UniqueSet; | 19 class UniqueSet; |
| (...skipping 318 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 338 } | 338 } |
| 339 capacity_ = new_capacity; | 339 capacity_ = new_capacity; |
| 340 array_ = new_array; | 340 array_ = new_array; |
| 341 } | 341 } |
| 342 } | 342 } |
| 343 }; | 343 }; |
| 344 | 344 |
| 345 } } // namespace v8::internal | 345 } } // namespace v8::internal |
| 346 | 346 |
| 347 #endif // V8_HYDROGEN_UNIQUE_H_ | 347 #endif // V8_HYDROGEN_UNIQUE_H_ |
| OLD | NEW |