a1383e2250
R=mstarzinger@chromium.org Review URL: https://codereview.chromium.org/426233002 git-svn-id: https://v8.googlecode.com/svn/branches/bleeding_edge@22709 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
24 lines
591 B
C++
24 lines
591 B
C++
// Copyright 2014 the V8 project authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
#ifndef V8_ZONE_CONTAINERS_H_
|
|
#define V8_ZONE_CONTAINERS_H_
|
|
|
|
#include <vector>
|
|
|
|
#include "src/zone-allocator.h"
|
|
|
|
namespace v8 {
|
|
namespace internal {
|
|
|
|
typedef std::vector<bool, ZoneBoolAllocator> BoolVector;
|
|
|
|
typedef std::vector<int, ZoneIntAllocator> IntVector;
|
|
typedef IntVector::iterator IntVectorIter;
|
|
typedef IntVector::reverse_iterator IntVectorRIter;
|
|
|
|
} } // namespace v8::internal
|
|
|
|
#endif // V8_ZONE_CONTAINERS_H_
|