Clang: Remove unused member field

Change-Id: I73875f538dbf08dd41cc55f3686b2cf2162a59f5
Reviewed-by: Tobias Hunger <tobias.hunger@qt.io>
This commit is contained in:
Nikolai Kosjar
2018-01-24 16:08:55 +01:00
parent f482270432
commit 3c6dbd9b37
2 changed files with 1 additions and 3 deletions

View File

@@ -45,8 +45,7 @@ ClangCodeModelConnectionClient::ClangCodeModelConnectionClient(
: ConnectionClient(Utils::TemporaryDirectory::masterDirectoryPath() : ConnectionClient(Utils::TemporaryDirectory::masterDirectoryPath()
+ QStringLiteral("/ClangBackEnd-") + QStringLiteral("/ClangBackEnd-")
+ currentProcessId()), + currentProcessId()),
m_serverProxy(client, nullptr), m_serverProxy(client, nullptr)
m_client(client)
{ {
m_processCreator.setTemporaryDirectoryPattern("clangbackend-XXXXXX"); m_processCreator.setTemporaryDirectoryPattern("clangbackend-XXXXXX");
m_processCreator.setArguments({connectionName()}); m_processCreator.setArguments({connectionName()});

View File

@@ -45,7 +45,6 @@ protected:
private: private:
ClangCodeModelServerProxy m_serverProxy; ClangCodeModelServerProxy m_serverProxy;
ClangCodeModelClientInterface *m_client;
}; };
} // namespace ClangBackEnd } // namespace ClangBackEnd