diff options
author | Brian Gianforcaro <b.gianfo@gmail.com> | 2020-08-04 21:42:34 -0700 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-08-05 12:13:50 +0200 |
commit | 88092376f3a984f3781dec6afdf59e93c34aa844 (patch) | |
tree | 2b3b97dc55f23f80b61466ba0ed2656888ee84d2 /AK | |
parent | 5a984b811cb70934058b1799a791285e46bc8eed (diff) | |
download | serenity-88092376f3a984f3781dec6afdf59e93c34aa844.zip |
AK: Use AK relative include style for InlineLinkedList.h
This is the style that seems to be used in the rest of AK.
Diffstat (limited to 'AK')
-rw-r--r-- | AK/InlineLinkedList.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/AK/InlineLinkedList.h b/AK/InlineLinkedList.h index 0707bf9f63..94c685737c 100644 --- a/AK/InlineLinkedList.h +++ b/AK/InlineLinkedList.h @@ -26,8 +26,8 @@ #pragma once -#include "Assertions.h" -#include "Types.h" +#include <AK/Assertions.h> +#include <AK/Types.h> namespace AK { |