From 6093e003e9c49c49001cce2692c0d504f54e1691 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Gannaz?= Date: Mon, 1 Apr 2019 10:39:57 +0200 Subject: [PATCH] Library: add missing 'default' to non-exhaustive 'switch' --- YACReaderLibrary/db/comic_model.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/YACReaderLibrary/db/comic_model.cpp b/YACReaderLibrary/db/comic_model.cpp index f73309c1..4a938cc5 100644 --- a/YACReaderLibrary/db/comic_model.cpp +++ b/YACReaderLibrary/db/comic_model.cpp @@ -174,6 +174,8 @@ bool ComicModel::dropMimeData(const QMimeData *data, Qt::DropAction action, int case ReadingList: DBHelper::reasignOrderToComicsInReadingList(sourceId,allComicIds,db); break; + default: + break; } QSqlDatabase::removeDatabase(db.connectionName());