File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -205,17 +205,17 @@ class GenericMemberIterator {
205
205
// class-based member iterator implementation disabled, use plain pointers
206
206
207
207
template <bool Const, typename Encoding, typename Allocator>
208
- struct GenericMemberIterator ;
208
+ class GenericMemberIterator ;
209
209
210
210
// ! non-const GenericMemberIterator
211
211
template <typename Encoding, typename Allocator>
212
- struct GenericMemberIterator <false ,Encoding,Allocator> {
212
+ class GenericMemberIterator <false ,Encoding,Allocator> {
213
213
// ! use plain pointer as iterator type
214
214
typedef GenericMember<Encoding,Allocator>* Iterator;
215
215
};
216
216
// ! const GenericMemberIterator
217
217
template <typename Encoding, typename Allocator>
218
- struct GenericMemberIterator <true ,Encoding,Allocator> {
218
+ class GenericMemberIterator <true ,Encoding,Allocator> {
219
219
// ! use plain const pointer as iterator type
220
220
typedef const GenericMember<Encoding,Allocator>* Iterator;
221
221
};
You can’t perform that action at this time.
0 commit comments