1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-06-01 09:58:14 +00:00

Userland/Applets: Use default constructors/destructors

https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#cother-other-default-operation-rules

"The compiler is more likely to get the default semantics right and
you cannot implement these functions better than the compiler."
This commit is contained in:
Lenny Maiorani 2022-02-10 11:24:17 -07:00 committed by Linus Groh
parent 04c5bc5e55
commit f2d8c488ec
7 changed files with 15 additions and 24 deletions

View file

@ -1,6 +1,7 @@
/*
* Copyright (c) 2019-2020, Sergey Bugaev <bugaevc@serenityos.org>
* Copyright (c) 2021, Mustafa Quraish <mustafa@cs.toronto.edu>
* Copyright (c) 2022, the SerenityOS developers.
*
* SPDX-License-Identifier: BSD-2-Clause
*/
@ -20,10 +21,6 @@ ClipboardHistoryModel::ClipboardHistoryModel()
{
}
ClipboardHistoryModel::~ClipboardHistoryModel()
{
}
String ClipboardHistoryModel::column_name(int column) const
{
switch (column) {