mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-03 08:08:43 +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: a7cbc7fcb2
Pull-request: https://github.com/SerenityOS/serenity/pull/3426
1 changed files with 1 additions and 4 deletions
|
@ -26,8 +26,8 @@
|
||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include <AK/JsonValue.h>
|
|
||||||
#include <AK/GenericLexer.h>
|
#include <AK/GenericLexer.h>
|
||||||
|
#include <AK/JsonValue.h>
|
||||||
|
|
||||||
namespace AK {
|
namespace AK {
|
||||||
|
|
||||||
|
@ -37,9 +37,6 @@ public:
|
||||||
: GenericLexer(input)
|
: GenericLexer(input)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
~JsonParser()
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
Optional<JsonValue> parse();
|
Optional<JsonValue> parse();
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue