forked from qt-creator/qt-creator
ClangTools: Remove clang executable settings
We use custom clang executable and it does not make sense anymore to give a choice of changing it. Change-Id: Icf86042ac3fcd08c320ef2bbdaabef1102b023b5 Reviewed-by: Nikolai Kosjar <nikolai.kosjar@qt.io>
This commit is contained in:
@@ -35,11 +35,9 @@ class ClangToolsSettings
|
||||
public:
|
||||
static ClangToolsSettings *instance();
|
||||
|
||||
void writeSettings() const;
|
||||
void writeSettings();
|
||||
|
||||
QString defaultClangExecutable() const;
|
||||
QString clangExecutable(bool *isSet = nullptr) const;
|
||||
void setClangExecutable(const QString &exectuable);
|
||||
int savedSimultaneousProcesses() const;
|
||||
|
||||
int simultaneousProcesses() const;
|
||||
void setSimultaneousProcesses(int processes);
|
||||
@@ -48,8 +46,8 @@ private:
|
||||
ClangToolsSettings();
|
||||
void readSettings();
|
||||
|
||||
QString m_clangExecutable;
|
||||
int m_simultaneousProcesses;
|
||||
int m_simultaneousProcesses = -1;
|
||||
int m_savedSimultaneousProcesses = -1;
|
||||
};
|
||||
|
||||
} // namespace Internal
|
||||
|
||||
Reference in New Issue
Block a user