Subversion: Fix unused argument warning

Amends 87e5ac7438.

Change-Id: If4b8d631a5388d98f482097b20169e2200f7675a
Reviewed-by: hjk <hjk@qt.io>
This commit is contained in:
Orgad Shaneh
2023-01-18 10:10:41 +02:00
committed by Orgad Shaneh
parent b5df17cee3
commit da31e72605
2 changed files with 2 additions and 3 deletions

View File

@@ -99,7 +99,7 @@ Id SubversionClient::vcsEditorKind(VcsCommandTag cmd) const
}
// Add authorization options to the command line arguments.
CommandLine &operator<<(Utils::CommandLine &command, const SubversionClient::AddAuthOptions &addAuth)
CommandLine &operator<<(Utils::CommandLine &command, SubversionClient::AddAuthOptions)
{
if (!s_settings->hasAuthentication())
return command;

View File

@@ -60,8 +60,7 @@ private:
mutable QString m_svnVersion;
};
Utils::CommandLine &operator<<(Utils::CommandLine &command,
const SubversionClient::AddAuthOptions &addAuth);
Utils::CommandLine &operator<<(Utils::CommandLine &command, SubversionClient::AddAuthOptions);
} // namespace Internal
} // namespace Subversion