From a7cbc7fcb2dd4ea58b0f65d657a5994b3fa272db Mon Sep 17 00:00:00 2001 From: asynts Date: Mon, 7 Sep 2020 13:30:40 +0200 Subject: [PATCH] AK: Remove empty destructor from JsonParser. --- AK/JsonParser.h | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/AK/JsonParser.h b/AK/JsonParser.h index aee5da4230..599e14aea1 100644 --- a/AK/JsonParser.h +++ b/AK/JsonParser.h @@ -26,8 +26,8 @@ #pragma once -#include #include +#include namespace AK { @@ -37,9 +37,6 @@ public: : GenericLexer(input) { } - ~JsonParser() - { - } Optional parse();