AK: Make StringBuilder::join() use appendff() instead of append()

`append()` is almost never going to select the overload that is desired.
e.g. it will append chars when you pass it a Vector<size_t>, which is
definitely not the right overload :)
This commit is contained in:
Ali Mohammad Pur 2021-08-05 22:23:13 +04:30 committed by Andreas Kling
parent 705e91d332
commit 3829bf115c

View file

@ -57,7 +57,7 @@ public:
first = false;
else
append(separator);
append(item);
appendff("{}", item);
}
}