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
+1 -1
View File
@@ -18,7 +18,7 @@
template <typename Key, typename Value>
IndexMap<Key,Value>& DelayedIndexMaps<Key,Value>::get(const String& name, const vector<Key>& init_with) {
intrusive_ptr<DelayedIndexMapsData<Key,Value> >& item = data[name];
intrusive_ptr<DelayedIndexMapsData<Key,Value>>& item = data[name];
if (!item) { // no item, make a new one
item = make_intrusive<DelayedIndexMapsData<Key,Value>>();
item->read_data.init(init_with);