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 /DevTools/Inspector/RemoteObject.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 'DevTools/Inspector/RemoteObject.h')
-rw-r--r-- | DevTools/Inspector/RemoteObject.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/DevTools/Inspector/RemoteObject.h b/DevTools/Inspector/RemoteObject.h index 1718683276..50cfd03640 100644 --- a/DevTools/Inspector/RemoteObject.h +++ b/DevTools/Inspector/RemoteObject.h @@ -1,6 +1,6 @@ #pragma once -#include <AK/AKString.h> +#include <AK/String.h> #include <AK/JsonObject.h> #include <AK/NonnullOwnPtrVector.h> #include <AK/Vector.h> |