From c3fa13fa7343f64b8f773ec667c8c28da54e168b Mon Sep 17 00:00:00 2001 From: Ali Mohammad Pur Date: Tue, 8 Jun 2021 15:16:32 +0430 Subject: [PATCH] AK: Rename Vector::{value_type => ValueType} --- AK/Vector.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/AK/Vector.h b/AK/Vector.h index 74dd02f1018..6a4b3ebc5de 100644 --- a/AK/Vector.h +++ b/AK/Vector.h @@ -33,7 +33,7 @@ namespace AK { template class Vector { public: - using value_type = T; + using ValueType = T; Vector() : m_capacity(inline_capacity)