mirror of
https://github.com/nextcloud/desktop.git
synced 2024-11-21 20:45:51 +03:00
fix [[nodiscard]] single warning
Signed-off-by: Matthieu Gallien <matthieu.gallien@nextcloud.com>
This commit is contained in:
parent
17e2f1de03
commit
5fc017575b
1 changed files with 1 additions and 1 deletions
|
@ -26,7 +26,7 @@ private slots:
|
||||||
void testAccountDavPath_unitialized_noCrash()
|
void testAccountDavPath_unitialized_noCrash()
|
||||||
{
|
{
|
||||||
AccountPtr account = Account::create();
|
AccountPtr account = Account::create();
|
||||||
account->davPath();
|
[[maybe_unused]] const auto davPath = account->davPath();
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue