Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/desktop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKevin Ottens <kevin.ottens@nextcloud.com>2020-05-25 22:33:24 +0300
committerKevin Ottens <kevin.ottens@nextcloud.com>2020-05-25 22:33:24 +0300
commita73a1f39276ca5132ba011f9a5d48055b9d7f1b8 (patch)
treeb796e21b39a12caf402a0eb8b7782dfcb4179358 /src/gui/creds/flow2auth.cpp
parent4825c472f6f83d9886cc25b05f38639a2861dd66 (diff)
Use = default for trivial ctors and dtors
Signed-off-by: Kevin Ottens <kevin.ottens@nextcloud.com>
Diffstat (limited to 'src/gui/creds/flow2auth.cpp')
-rw-r--r--src/gui/creds/flow2auth.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/gui/creds/flow2auth.cpp b/src/gui/creds/flow2auth.cpp
index e75a8c9bf..b4e826d46 100644
--- a/src/gui/creds/flow2auth.cpp
+++ b/src/gui/creds/flow2auth.cpp
@@ -41,9 +41,7 @@ Flow2Auth::Flow2Auth(Account *account, QObject *parent)
QObject::connect(&_pollTimer, &QTimer::timeout, this, &Flow2Auth::slotPollTimerTimeout);
}
-Flow2Auth::~Flow2Auth()
-{
-}
+Flow2Auth::~Flow2Auth() = default;
void Flow2Auth::start()
{