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
path: root/test
diff options
context:
space:
mode:
authorMatthieu Gallien <matthieu.gallien@nextcloud.com>2022-09-30 20:19:03 +0300
committerMatthieu Gallien <matthieu_gallien@yahoo.fr>2022-10-04 12:14:45 +0300
commit5fc017575bd8af27791818e167f6dc72a058f40f (patch)
treebb816cbd9173b0ebbbf9dffa594643609db93178 /test
parent17e2f1de034290c782d0c7d2eb5b00e07f507a49 (diff)
fix [[nodiscard]] single warning
Signed-off-by: Matthieu Gallien <matthieu.gallien@nextcloud.com>
Diffstat (limited to 'test')
-rw-r--r--test/testaccount.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/testaccount.cpp b/test/testaccount.cpp
index 8b1e55812..e5122b7f3 100644
--- a/test/testaccount.cpp
+++ b/test/testaccount.cpp
@@ -26,7 +26,7 @@ private slots:
void testAccountDavPath_unitialized_noCrash()
{
AccountPtr account = Account::create();
- account->davPath();
+ [[maybe_unused]] const auto davPath = account->davPath();
}
};