mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-21 23:20:20 +00:00
AK: Rename Vector::{value_type => ValueType}
This commit is contained in:
parent
c7cd81bce8
commit
c3fa13fa73
Notes:
sideshowbarker
2024-07-18 12:37:07 +09:00
Author: https://github.com/alimpfard Commit: https://github.com/SerenityOS/serenity/commit/c3fa13fa734 Pull-request: https://github.com/SerenityOS/serenity/pull/7920
1 changed files with 1 additions and 1 deletions
|
@ -33,7 +33,7 @@ namespace AK {
|
|||
template<typename T, size_t inline_capacity>
|
||||
class Vector {
|
||||
public:
|
||||
using value_type = T;
|
||||
using ValueType = T;
|
||||
|
||||
Vector()
|
||||
: m_capacity(inline_capacity)
|
||||
|
|
Loading…
Reference in a new issue