diff options
author | Andreas Kling <kling@serenityos.org> | 2022-04-10 19:17:47 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2022-04-10 19:18:16 +0200 |
commit | 40f584a2bbb6a6439ac2b55ff82d29b62a3c0224 (patch) | |
tree | ef42603e7b05136ebc01c871cc5dad8191e64bc5 /AK/Traits.h | |
parent | a687186039125a2c83c8495063f2de4d2a92ee60 (diff) | |
download | serenity-40f584a2bbb6a6439ac2b55ff82d29b62a3c0224.zip |
AK: Add missing include to Traits.h
Diffstat (limited to 'AK/Traits.h')
-rw-r--r-- | AK/Traits.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/AK/Traits.h b/AK/Traits.h index 539174b7d0..133ff25462 100644 --- a/AK/Traits.h +++ b/AK/Traits.h @@ -1,11 +1,12 @@ /* - * Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org> + * Copyright (c) 2018-2022, Andreas Kling <kling@serenityos.org> * * SPDX-License-Identifier: BSD-2-Clause */ #pragma once +#include <AK/BitCast.h> #include <AK/Concepts.h> #include <AK/Forward.h> #include <AK/HashFunctions.h> |