aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/corelib/buildgraph/executorjob.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/corelib/buildgraph/executorjob.h')
-rw-r--r--src/lib/corelib/buildgraph/executorjob.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/lib/corelib/buildgraph/executorjob.h b/src/lib/corelib/buildgraph/executorjob.h
index e28d42f7f..c810973f7 100644
--- a/src/lib/corelib/buildgraph/executorjob.h
+++ b/src/lib/corelib/buildgraph/executorjob.h
@@ -88,12 +88,12 @@ private:
void setFinished();
void reset();
- AbstractCommandExecutor *m_currentCommandExecutor;
- ProcessCommandExecutor *m_processCommandExecutor;
- JsCommandExecutor *m_jsCommandExecutor;
- Transformer *m_transformer;
+ AbstractCommandExecutor *m_currentCommandExecutor = nullptr;
+ ProcessCommandExecutor *m_processCommandExecutor = nullptr;
+ JsCommandExecutor *m_jsCommandExecutor = nullptr;
+ Transformer *m_transformer = nullptr;
Set<QString> m_jobPools;
- int m_currentCommandIdx;
+ int m_currentCommandIdx = 0;
ErrorInfo m_error;
};