Fix broken indentation

This commit is contained in:
Stephan van Veen 2019-05-09 20:28:10 +02:00
parent 2dc9121acf
commit 91cd2477de

View File

@ -69,7 +69,7 @@ bool upsert(std::map<KeyType, ElementType>& aMap, KeyType const& aKey, ElementTy
bool starts_with(const std::string& haystack, const std::string& needle) {
return needle.length() <= haystack.length()
&& std::equal(needle.begin(), needle.end(), haystack.begin());
};
}
// Get value at index from std::list
template <typename T>