mirror of
https://github.com/intel/compute-runtime.git
synced 2025-09-10 12:53:42 +08:00
Fix unit test issues
remove dead store initialize default values in class definition Change-Id: I39abef12104a80df13ace0fb127c4ee24e00b184 Signed-off-by: Jablonski, Mateusz <mateusz.jablonski@intel.com>
This commit is contained in:
@ -14,17 +14,12 @@ namespace NEO {
|
||||
class CommandQueue;
|
||||
|
||||
struct IndirectHeapFixture {
|
||||
IndirectHeapFixture() : pDSH(nullptr),
|
||||
pIOH(nullptr),
|
||||
pSSH(nullptr) {
|
||||
}
|
||||
|
||||
virtual void SetUp(CommandQueue *pCmdQ);
|
||||
virtual void TearDown() {
|
||||
}
|
||||
|
||||
IndirectHeap *pDSH;
|
||||
IndirectHeap *pIOH;
|
||||
IndirectHeap *pSSH;
|
||||
IndirectHeap *pDSH = nullptr;
|
||||
IndirectHeap *pIOH = nullptr;
|
||||
IndirectHeap *pSSH = nullptr;
|
||||
};
|
||||
} // namespace NEO
|
||||
|
Reference in New Issue
Block a user