Explicitly initialize DispatchInfo members

Explicitly initialize objects:
- DispatchInfo::dispatchInitCommands
- DispatchInfo::dispatchEpilogueCommands

Signed-off-by: Filip Hazubski <filip.hazubski@intel.com>
This commit is contained in:
Filip Hazubski
2022-08-09 11:40:42 +00:00
committed by Compute-Runtime-Automation
parent e7cca25894
commit 2f12e50b83

View File

@@ -65,8 +65,8 @@ class DispatchInfo {
bool peekCanBePartitioned() const { return canBePartitioned; }
void setCanBePartitioned(bool canBePartitioned) { this->canBePartitioned = canBePartitioned; }
RegisteredMethodDispatcher<DispatchCommandMethodT, EstimateCommandsMethodT> dispatchInitCommands;
RegisteredMethodDispatcher<DispatchCommandMethodT, EstimateCommandsMethodT> dispatchEpilogueCommands;
RegisteredMethodDispatcher<DispatchCommandMethodT, EstimateCommandsMethodT> dispatchInitCommands{};
RegisteredMethodDispatcher<DispatchCommandMethodT, EstimateCommandsMethodT> dispatchEpilogueCommands{};
protected:
ClDevice *pClDevice = nullptr;