Skip to content
Snippets Groups Projects

F cpp to string

Merged
Timm Fitschenrequested to merge
f-cpp-to-string into dev
All threads resolved!
1 file
+ 1
1
Compare changes
  • Side-by-side
  • Inline
+ 1
1
@@ -142,7 +142,7 @@ public:
throw std::out_of_range("Container has size " + std::to_string(size()));
}
if (cache.count(index) == 0) {
cache.emplace(std::move(index), std::move(T(this->wrapped->Mutable(index))));
cache.emplace(index, T(this->wrapped->Mutable(index)));
}
return &(cache.at(index));
}
Loading