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. // 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()) if (!s_settings->hasAuthentication())
return command; return command;

View File

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