diff options
author | Ben Wiederhake <BenWiederhake.GitHub@gmx.de> | 2021-10-10 15:44:22 +0200 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2021-10-20 09:20:18 +0100 |
commit | 0a53cf2a07f1042b1b438a15e260da910db27d0c (patch) | |
tree | 6b4e9f4dce109baeda493853e0a298ab34610dee | |
parent | f53b80e04fec0e457076e98b4e43ad685e2da93c (diff) | |
download | serenity-0a53cf2a07f1042b1b438a15e260da910db27d0c.zip |
LibJS: Add missing header in EnvironmentCoordinate.h
-rw-r--r-- | Userland/Libraries/LibJS/Runtime/EnvironmentCoordinate.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Userland/Libraries/LibJS/Runtime/EnvironmentCoordinate.h b/Userland/Libraries/LibJS/Runtime/EnvironmentCoordinate.h index 7544908ccb..f2ca2b0050 100644 --- a/Userland/Libraries/LibJS/Runtime/EnvironmentCoordinate.h +++ b/Userland/Libraries/LibJS/Runtime/EnvironmentCoordinate.h @@ -6,6 +6,7 @@ #pragma once +#include <AK/Types.h> #include <LibJS/Forward.h> namespace JS { |