diff options
author | Andreas Kling <kling@serenityos.org> | 2021-11-10 11:05:21 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-11-10 21:58:58 +0100 |
commit | 5f7d008791f9e358638283dc2f0d709a601344ff (patch) | |
tree | 4453407e376e23e649857a0d37564c4f61ab40de /AK/MACAddress.h | |
parent | e52f987020be996f49c09dfdd53306366f2cbab9 (diff) | |
download | serenity-5f7d008791f9e358638283dc2f0d709a601344ff.zip |
AK+Everywhere: Stop including Vector.h from StringView.h
Preparation for using Error.h from Vector.h. This required moving some
things out of line.
Diffstat (limited to 'AK/MACAddress.h')
-rw-r--r-- | AK/MACAddress.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/AK/MACAddress.h b/AK/MACAddress.h index 27ae58909c..bcac9c8eec 100644 --- a/AK/MACAddress.h +++ b/AK/MACAddress.h @@ -11,6 +11,7 @@ #include <AK/Assertions.h> #include <AK/String.h> #include <AK/Types.h> +#include <AK/Vector.h> class [[gnu::packed]] MACAddress { static constexpr size_t s_mac_address_length = 6u; |