Fixed formatting

This commit is contained in:
Bartek Kryza
2022-01-22 21:02:06 +01:00
parent 20759f412d
commit 246fa9d845
14 changed files with 14892 additions and 12517 deletions

View File

@@ -139,7 +139,7 @@ template <typename T> void append(std::vector<T> &l, const std::vector<T> &r)
template <typename T>
bool starts_with(const std::vector<T> &col, const std::vector<T> &prefix)
{
if(prefix.size() > col.size())
if (prefix.size() > col.size())
return false;
return std::vector<std::string>(prefix.begin(), prefix.end()) ==