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

@ -1048,16 +1048,13 @@ private:
};
template<typename T>
TString(size_t, T) -> TString<T>;
template<typename T>
TString(const T*) -> TString<T>;
template<typename T>
TString(TStringView<T>) -> TString<T>;
template<typename I, typename S>
template<CForwardIterator I, typename S>
TString(I, S) -> TString<TIteratorElementType<I>>;
template <typename T>