blob: 4fec8246889c423f2c05d46f5216d83592d02d4d [file] [log] [blame]
// Copyright 2022 PDFium 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 CORE_FXCRT_FIXED_UNINIT_DATA_VECTOR_H_
#define CORE_FXCRT_FIXED_UNINIT_DATA_VECTOR_H_
#include "core/fxcrt/fixed_size_data_vector.h"
template <typename T>
using FixedUninitDataVector =
fxcrt::FixedSizeDataVector<T, /*initialize=*/false>;
#endif // CORE_FXCRT_FIXED_UNINIT_DATA_VECTOR_H_