mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-21 23:20:20 +00:00
AK: Remove empty destructor from JsonParser.
This commit is contained in:
parent
70dd97c46e
commit
a7cbc7fcb2
Notes:
sideshowbarker
2024-07-19 02:49:54 +09:00
Author: https://github.com/asynts Commit: https://github.com/SerenityOS/serenity/commit/a7cbc7fcb2d Pull-request: https://github.com/SerenityOS/serenity/pull/3426
1 changed files with 1 additions and 4 deletions
|
@ -26,8 +26,8 @@
|
|||
|
||||
#pragma once
|
||||
|
||||
#include <AK/JsonValue.h>
|
||||
#include <AK/GenericLexer.h>
|
||||
#include <AK/JsonValue.h>
|
||||
|
||||
namespace AK {
|
||||
|
||||
|
@ -37,9 +37,6 @@ public:
|
|||
: GenericLexer(input)
|
||||
{
|
||||
}
|
||||
~JsonParser()
|
||||
{
|
||||
}
|
||||
|
||||
Optional<JsonValue> parse();
|
||||
|
||||
|
|
Loading…
Reference in a new issue