Coding style fixes in AK.

This commit is contained in:
Andreas Kling 2019-01-19 22:53:05 +01:00
commit b75ee4aacb
Notes: sideshowbarker 2024-07-19 16:00:12 +09:00
12 changed files with 126 additions and 126 deletions

View file

@ -126,7 +126,7 @@ int main(int c, char** v)
strings.append("f");
strings.append("g");
auto g = strings.takeLast();
auto g = strings.take_last();
for (unsigned i = 0; i < strings.size(); ++i) {
printf("[%u]: '%s'\n", i, strings[i].characters());