summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibWeb/HTML/History.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Userland/Libraries/LibWeb/HTML/History.cpp')
-rw-r--r--Userland/Libraries/LibWeb/HTML/History.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/Userland/Libraries/LibWeb/HTML/History.cpp b/Userland/Libraries/LibWeb/HTML/History.cpp
index 8e68f281d2..379fddf37f 100644
--- a/Userland/Libraries/LibWeb/HTML/History.cpp
+++ b/Userland/Libraries/LibWeb/HTML/History.cpp
@@ -14,9 +14,7 @@ History::History(DOM::Document& document)
{
}
-History::~History()
-{
-}
+History::~History() = default;
// https://html.spec.whatwg.org/multipage/history.html#dom-history-pushstate
DOM::ExceptionOr<void> History::push_state(JS::Value data, String const&, String const& url)