File tree Expand file tree Collapse file tree 3 files changed +10
-2
lines changed Expand file tree Collapse file tree 3 files changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -109,6 +109,12 @@ class NonnullRefPtr;
109
109
template <typename T>
110
110
class NonnullOwnPtr ;
111
111
112
+ template <typename T, int inline_capacity = 0 >
113
+ class NonnullRefPtrVector ;
114
+
115
+ template <typename T, int inline_capacity = 0 >
116
+ class NonnullOwnPtrVector ;
117
+
112
118
template <typename T>
113
119
class Optional ;
114
120
@@ -154,7 +160,9 @@ using AK::JsonObject;
154
160
using AK::JsonValue;
155
161
using AK::LogStream;
156
162
using AK::NonnullOwnPtr;
163
+ using AK::NonnullOwnPtrVector;
157
164
using AK::NonnullRefPtr;
165
+ using AK::NonnullRefPtrVector;
158
166
using AK::Optional;
159
167
using AK::OutputMemoryStream;
160
168
using AK::OutputStream;
Original file line number Diff line number Diff line change 31
31
32
32
namespace AK {
33
33
34
- template <typename T, int inline_capacity = 0 >
34
+ template <typename T, int inline_capacity>
35
35
class NonnullOwnPtrVector : public NonnullPtrVector <NonnullOwnPtr<T>, inline_capacity> {
36
36
};
37
37
Original file line number Diff line number Diff line change 31
31
32
32
namespace AK {
33
33
34
- template <typename T, int inline_capacity = 0 >
34
+ template <typename T, int inline_capacity>
35
35
class NonnullRefPtrVector : public NonnullPtrVector <NonnullRefPtr<T>, inline_capacity> {
36
36
};
37
37
You can’t perform that action at this time.
0 commit comments