diff options
author | Andreas Kling <kling@serenityos.org> | 2020-09-28 09:17:33 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-09-28 09:17:33 +0200 |
commit | ebe1288aea962951f1b1f2c3a2796f69a8c13f68 (patch) | |
tree | 2d5498890dd432b1d3ad68946b671fc959b67f99 | |
parent | f0f6b09acb2ca9b752cfc0a23387e2566e04deee (diff) | |
download | serenity-ebe1288aea962951f1b1f2c3a2796f69a8c13f68.zip |
LibJS: Add missing <AK/Function.h> include in JSONObject.cpp
-rw-r--r-- | Libraries/LibJS/Runtime/JSONObject.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Libraries/LibJS/Runtime/JSONObject.cpp b/Libraries/LibJS/Runtime/JSONObject.cpp index 1f87999fa9..12fbc18490 100644 --- a/Libraries/LibJS/Runtime/JSONObject.cpp +++ b/Libraries/LibJS/Runtime/JSONObject.cpp @@ -24,6 +24,7 @@ * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ +#include <AK/Function.h> #include <AK/JsonArray.h> #include <AK/JsonObject.h> #include <AK/JsonParser.h> |