diff options
author | Linus Groh <mail@linusgroh.de> | 2022-02-14 23:02:56 +0000 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2022-02-14 23:02:56 +0000 |
commit | 8eb936538fe00a0e8d762be528f3ef46b86d7319 (patch) | |
tree | a7e0db06d9b6d0437ec3e17489c6c41f6480c3b2 /Userland/Libraries | |
parent | 160bda72280fd61e3059163c267abf542439f852 (diff) | |
download | serenity-8eb936538fe00a0e8d762be528f3ef46b86d7319.zip |
LibJS: Add missing include for 'u32' to CanonicalIndex.h
Diffstat (limited to 'Userland/Libraries')
-rw-r--r-- | Userland/Libraries/LibJS/Runtime/CanonicalIndex.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Userland/Libraries/LibJS/Runtime/CanonicalIndex.h b/Userland/Libraries/LibJS/Runtime/CanonicalIndex.h index 71f81d5155..e9a6eafa13 100644 --- a/Userland/Libraries/LibJS/Runtime/CanonicalIndex.h +++ b/Userland/Libraries/LibJS/Runtime/CanonicalIndex.h @@ -6,6 +6,8 @@ #pragma once +#include <AK/Types.h> + class CanonicalIndex { public: enum class Type { |