VCS: Remove trailing return type of lambda

Change-Id: Iba1033ed5eaaf68815ac83a91a514845c0f2347a
Reviewed-by: Orgad Shaneh <orgads@gmail.com>
This commit is contained in:
Nikolai Kosjar
2018-10-11 15:45:23 +02:00
parent d67ddfb5d1
commit fcada78b3f

View File

@@ -43,7 +43,7 @@ VcsCommand::VcsCommand(const QString &workingDirectory,
Core::ShellCommand(workingDirectory, environment),
m_preventRepositoryChanged(false)
{
setOutputProxyFactory([this]() -> OutputProxy * {
setOutputProxyFactory([this] {
auto proxy = new OutputProxy;
VcsOutputWindow *outputWindow = VcsOutputWindow::instance();