blob: c8b91a699c2223016bdd1d4936581cf0ee5f6eb1 [file] [log] [blame]
// Copyright 2022 The PDFium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CORE_FXCRT_FIXED_ZEROED_DATA_VECTOR_H_
#define CORE_FXCRT_FIXED_ZEROED_DATA_VECTOR_H_
#include "core/fxcrt/fixed_size_data_vector.h"
template <typename T>
using FixedZeroedDataVector =
fxcrt::FixedSizeDataVector<T, fxcrt::DataVectorAllocOption::kInitialized>;
#endif // CORE_FXCRT_FIXED_ZEROED_DATA_VECTOR_H_