mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 11:57:35 +00:00
AK: Make Vector::data() ALWAYS_INLINE
This was showing up in profiles of Browser, and it really shouldn't be.
This commit is contained in:
parent
3729fd06fa
commit
de7b5279cb
1 changed files with 2 additions and 2 deletions
|
@ -113,14 +113,14 @@ public:
|
||||||
ALWAYS_INLINE size_t size() const { return m_size; }
|
ALWAYS_INLINE size_t size() const { return m_size; }
|
||||||
size_t capacity() const { return m_capacity; }
|
size_t capacity() const { return m_capacity; }
|
||||||
|
|
||||||
StorageType* data()
|
ALWAYS_INLINE StorageType* data()
|
||||||
{
|
{
|
||||||
if constexpr (inline_capacity > 0)
|
if constexpr (inline_capacity > 0)
|
||||||
return m_outline_buffer ? m_outline_buffer : inline_buffer();
|
return m_outline_buffer ? m_outline_buffer : inline_buffer();
|
||||||
return m_outline_buffer;
|
return m_outline_buffer;
|
||||||
}
|
}
|
||||||
|
|
||||||
StorageType const* data() const
|
ALWAYS_INLINE StorageType const* data() const
|
||||||
{
|
{
|
||||||
if constexpr (inline_capacity > 0)
|
if constexpr (inline_capacity > 0)
|
||||||
return m_outline_buffer ? m_outline_buffer : inline_buffer();
|
return m_outline_buffer ? m_outline_buffer : inline_buffer();
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue