diff options
author | Liav A <liavalb@gmail.com> | 2023-02-24 20:10:59 +0200 |
---|---|---|
committer | Jelle Raaijmakers <jelle@gmta.nl> | 2023-06-04 21:32:34 +0200 |
commit | 7c0540a22900a8366741205dead7f76ae4cfabcc (patch) | |
tree | b5b5a2d3912879070faf86bbff26af715610618e /AK/IPv6Address.h | |
parent | f1cbfc5a6e9b6a60278fcbb3e9fa9b10e1f593e0 (diff) | |
download | serenity-7c0540a22900a8366741205dead7f76ae4cfabcc.zip |
Everywhere: Move global Kernel pattern code to Kernel/Library directory
This has KString, KBuffer, DoubleBuffer, KBufferBuilder, IOWindow,
UserOrKernelBuffer and ScopedCritical classes being moved to the
Kernel/Library subdirectory.
Also, move the panic and assertions handling code to that directory.
Diffstat (limited to 'AK/IPv6Address.h')
-rw-r--r-- | AK/IPv6Address.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/AK/IPv6Address.h b/AK/IPv6Address.h index 292b0a5f62..e2e59dd6f9 100644 --- a/AK/IPv6Address.h +++ b/AK/IPv6Address.h @@ -14,7 +14,7 @@ #ifdef KERNEL # include <AK/Error.h> -# include <Kernel/KString.h> +# include <Kernel/Library/KString.h> #else # include <AK/DeprecatedString.h> #endif |