// Copyright 2018 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.#include "src/detachable-vector.h"namespacev8{namespaceinternal{constsize_tDetachableVectorBase::kMinimumCapacity=8;constsize_tDetachableVectorBase::kDataOffset=offsetof(DetachableVectorBase,data_);constsize_tDetachableVectorBase::kCapacityOffset=offsetof(DetachableVectorBase,capacity_);constsize_tDetachableVectorBase::kSizeOffset=offsetof(DetachableVectorBase,size_);}// namespace internal}// namespace v8