blob: a00387040d18b892192e2c8df8a3ae88f517b245 [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_DATA_VECTOR_H_
#define CORE_FXCRT_DATA_VECTOR_H_
#include <vector>
#include "core/fxcrt/fx_memory_wrappers.h"
namespace fxcrt {
template <typename T>
using DataVector = std::vector<T, FxAllocAllocator<T>>;
} // namespace fxcrt
using fxcrt::DataVector;
#endif // CORE_FXCRT_DATA_VECTOR_H_