diff options
-rw-r--r-- | core/fxcrt/string_view_template.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/fxcrt/string_view_template.h b/core/fxcrt/string_view_template.h index ac376ff8a0..12b422e090 100644 --- a/core/fxcrt/string_view_template.h +++ b/core/fxcrt/string_view_template.h @@ -64,7 +64,7 @@ class StringViewTemplate { // Any changes to |vec| invalidate the string. explicit StringViewTemplate(const std::vector<UnsignedType>& vec) { - m_Length = pdfium::CollectionSize<size_t>(vec); + m_Length = vec.size(); m_Ptr = m_Length ? vec.data() : nullptr; } |