1 // Copyright 2022 The PDFium Authors 2 // Use of this source code is governed by a BSD-style license that can be 3 // found in the LICENSE file. 4 5 #ifndef CORE_FXCRT_FIXED_UNINIT_DATA_VECTOR_H_ 6 #define CORE_FXCRT_FIXED_UNINIT_DATA_VECTOR_H_ 7 8 #include "core/fxcrt/fixed_size_data_vector.h" 9 10 template <typename T> 11 using FixedUninitDataVector = 12 fxcrt::FixedSizeDataVector<T, fxcrt::DataVectorAllocOption::kUninitialized>; 13 14 #endif // CORE_FXCRT_FIXED_UNINIT_DATA_VECTOR_H_ 15