diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-09-06 15:34:26 +0200 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-09-06 15:36:54 +0200 |
commit | 73fdbba59c6b91a0ef1789d3f37b703215ea7cef (patch) | |
tree | 446525a58ccef2c66a10b15539aa984163c82cff /Kernel/FileSystem/Custody.h | |
parent | b4a2bb9383d2d376a603ff33105b0af5eb0cd0b1 (diff) | |
download | serenity-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 'Kernel/FileSystem/Custody.h')
-rw-r--r-- | Kernel/FileSystem/Custody.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Kernel/FileSystem/Custody.h b/Kernel/FileSystem/Custody.h index 23b8667219..8df1c746a7 100644 --- a/Kernel/FileSystem/Custody.h +++ b/Kernel/FileSystem/Custody.h @@ -1,6 +1,6 @@ #pragma once -#include <AK/AKString.h> +#include <AK/String.h> #include <AK/Badge.h> #include <AK/InlineLinkedList.h> #include <AK/RefCounted.h> |