Clean up old style angle brackets in nested templates

This commit is contained in:
Twan van Laarhoven
2020-05-15 02:15:58 +02:00
parent 3ea5ea9573
commit a7c47729c1
16 changed files with 18 additions and 18 deletions
+2 -2
View File
@@ -133,7 +133,7 @@ inline void swap(IndexMap<Key,Value>& a, IndexMap<Key,Value>& b) {
/* Invariant: read_data is initialized <=> unread_data.empty()
*/
template <typename Key, typename Value>
struct DelayedIndexMapsData : public IntrusivePtrBase<DelayedIndexMapsData<Key, Value> > {
struct DelayedIndexMapsData : public IntrusivePtrBase<DelayedIndexMapsData<Key, Value>> {
String unread_data;
IndexMap<Key,Value> read_data;
};
@@ -150,7 +150,7 @@ public:
/// Clear the delayed index map
void clear();
private:
map<String, intrusive_ptr<DelayedIndexMapsData<Key,Value> > > data;
map<String, intrusive_ptr<DelayedIndexMapsData<Key,Value>>> data;
friend class Reader;
friend class Writer;
friend class GetDefaultMember;