fix(containers): remove qualifiers for Iterator::ElementType

This commit is contained in:
2024-10-30 23:14:52 +08:00
parent 1f20b782bf
commit 1cfa252779
10 changed files with 196 additions and 200 deletions

View File

@ -16,7 +16,7 @@ class TConstantIterator final
{
public:
using ElementType = T;
using ElementType = TRemoveCV<T>;
FORCEINLINE constexpr TConstantIterator() = default;
@ -68,7 +68,7 @@ class TConstantIterator<T&> final
{
public:
using ElementType = T;
using ElementType = TRemoveCV<T>;
FORCEINLINE constexpr TConstantIterator() = default;