OLD | NEW |
1 // Copyright 2016 the V8 project authors. All rights reserved. | 1 // Copyright 2016 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 #include <stdlib.h> | 5 #include <stdlib.h> |
6 | 6 |
7 #include "src/globals.h" | 7 #include "src/globals.h" |
| 8 #include "src/utils.h" |
8 #include "src/zone/zone.h" | 9 #include "src/zone/zone.h" |
9 | 10 |
10 #ifndef V8_SRC_ZONE_ZONE_CHUNK_LIST_H_ | 11 #ifndef V8_SRC_ZONE_ZONE_CHUNK_LIST_H_ |
11 #define V8_SRC_ZONE_ZONE_CHUNK_LIST_H_ | 12 #define V8_SRC_ZONE_ZONE_CHUNK_LIST_H_ |
12 | 13 |
13 namespace v8 { | 14 namespace v8 { |
14 namespace internal { | 15 namespace internal { |
15 | 16 |
16 template <typename T> | 17 template <typename T> |
17 class ZoneChunkListIterator; | 18 class ZoneChunkListIterator; |
(...skipping 425 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
443 | 444 |
444 template <typename T> | 445 template <typename T> |
445 ReverseZoneChunkListIterator<const T> ZoneChunkList<T>::rend() const { | 446 ReverseZoneChunkListIterator<const T> ZoneChunkList<T>::rend() const { |
446 return ReverseZoneChunkListIterator<const T>::End(this); | 447 return ReverseZoneChunkListIterator<const T>::End(this); |
447 } | 448 } |
448 | 449 |
449 } // namespace internal | 450 } // namespace internal |
450 } // namespace v8 | 451 } // namespace v8 |
451 | 452 |
452 #endif // V8_SRC_ZONE_ZONE_CHUNK_LIST_H_ | 453 #endif // V8_SRC_ZONE_ZONE_CHUNK_LIST_H_ |
OLD | NEW |