summaryrefslogtreecommitdiff
path: root/Userland/sort.cpp
diff options
context:
space:
mode:
authorAndreas Kling <awesomekling@gmail.com>2019-09-06 15:34:26 +0200
committerAndreas Kling <awesomekling@gmail.com>2019-09-06 15:36:54 +0200
commit73fdbba59c6b91a0ef1789d3f37b703215ea7cef (patch)
tree446525a58ccef2c66a10b15539aa984163c82cff /Userland/sort.cpp
parentb4a2bb9383d2d376a603ff33105b0af5eb0cd0b1 (diff)
downloadserenity-73fdbba59c6b91a0ef1789d3f37b703215ea7cef.zip
AK: Rename <AK/AKString.h> to <AK/String.h>
This was a workaround to be able to build on case-insensitive file systems where it might get confused about <string.h> vs <String.h>. Let's just not support building that way, so String.h can have an objectively nicer name. :^)
Diffstat (limited to 'Userland/sort.cpp')
-rw-r--r--Userland/sort.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/sort.cpp b/Userland/sort.cpp
index e2bc08ad74..442f08e134 100644
--- a/Userland/sort.cpp
+++ b/Userland/sort.cpp
@@ -1,4 +1,4 @@
-#include <AK/AKString.h>
+#include <AK/String.h>
#include <AK/QuickSort.h>
#include <AK/Vector.h>
#include <stdio.h>