mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 01:57:45 +00:00
LibWeb: Stop using NonnullRefPtrVector for StyleValueVector
This commit is contained in:
parent
8a48246ed1
commit
4c75d4af28
4 changed files with 33 additions and 25 deletions
|
@ -267,9 +267,7 @@ private:
|
|||
using RefPtr<T>::operator==;
|
||||
};
|
||||
|
||||
template<typename T>
|
||||
using ValueComparingNonnullRefPtrVector = AK::NonnullPtrVector<ValueComparingNonnullRefPtr<T>>;
|
||||
using StyleValueVector = ValueComparingNonnullRefPtrVector<StyleValue const>;
|
||||
using StyleValueVector = Vector<ValueComparingNonnullRefPtr<StyleValue const>>;
|
||||
|
||||
class StyleValue : public RefCounted<StyleValue> {
|
||||
public:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue