Skip to content
Snippets Groups Projects
Commit 50f2d91b authored by Thiago Macieira's avatar Thiago Macieira Committed by Eike Ziller
Browse files

Fix warning about non-void function with no return


remotelinuxruncontrolfactory.cpp(124): warning #1011: missing return statement at end of non-void function "RemoteLinux::Internal::RemoteLinuxRunControlFactory::create"

Technically, the function doesn't reach there, but ICC 14 doesn't know
about it.

Change-Id: Id55f6f33ff7c0eb97dba9af99bf0d34a9c01e191
Reviewed-by: default avatarKurt Pattyn <pattyn.kurt@gmail.com>
Reviewed-by: default avatarEike Ziller <eike.ziller@digia.com>
parent 3851ec29
No related branches found
No related tags found
No related merge requests found
......@@ -121,6 +121,7 @@ RunControl *RemoteLinuxRunControlFactory::create(RunConfiguration *runConfig, Ru
}
QTC_ASSERT(false, return 0);
return 0;
}
} // namespace Internal
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment