Age | Commit message (Collapse) | Author | |
---|---|---|---|
2019-06-07 | LibGUI: Run clang-format on everything. | Andreas Kling | |
2019-05-28 | Add clang-format file | Robin Burchell | |
Also run it across the whole tree to get everything using the One True Style. We don't yet run this in an automated fashion as it's a little slow, but there is a snippet to do so in makeall.sh. | |||
2019-05-26 | QuickSort: Don't sort a single item, nothing to do | Robin Burchell | |
2019-05-19 | AK: Simplify quick_sort() and improve Vector iterators a bit. | Andreas Kling | |
2019-03-09 | AK: Add a basic QuickSort template implementation. | Andreas Kling | |
It was depressing not being able to capture anything when passing a lambda to qsort_r() so let's just have our own QuickSort. I was gonna have to do this eventually anyway. :^) |