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 /Libraries/LibVT/Terminal.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 'Libraries/LibVT/Terminal.h')
-rw-r--r-- | Libraries/LibVT/Terminal.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Libraries/LibVT/Terminal.h b/Libraries/LibVT/Terminal.h index 3169c92860..f41a32bfbb 100644 --- a/Libraries/LibVT/Terminal.h +++ b/Libraries/LibVT/Terminal.h @@ -1,6 +1,6 @@ #pragma once -#include <AK/AKString.h> +#include <AK/String.h> #include <AK/NonnullOwnPtrVector.h> #include <AK/Vector.h> #include <LibVT/Position.h> |