diff options
author | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2020-12-23 17:21:44 +0100 |
---|---|---|
committer | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2020-12-23 17:21:44 +0100 |
commit | 1a832ae9b6a0d679b551fd644136e4bc17e7db29 (patch) | |
tree | f663208ef410648022379e3881c1b3d7182ed48f /lib | |
parent | 9ef83e044ed4f8409156b19d529dfc7e45f565c1 (diff) | |
download | libquotient-1a832ae9b6a0d679b551fd644136e4bc17e7db29.tar.gz libquotient-1a832ae9b6a0d679b551fd644136e4bc17e7db29.zip |
BaseJob: add [[fallthrough]] as clang-tidy says
Diffstat (limited to 'lib')
-rw-r--r-- | lib/jobs/basejob.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/jobs/basejob.cpp b/lib/jobs/basejob.cpp index e16ba4ef..3fa1cd94 100644 --- a/lib/jobs/basejob.cpp +++ b/lib/jobs/basejob.cpp @@ -620,6 +620,7 @@ void BaseJob::finishJob() emit retryScheduled(d->retriesTaken, milliseconds(retryIn).count()); return; } + [[fallthrough]]; default:; } |