SyncInfoLin: Initialize members

Change-Id: I7d34fe5e353e782896b71c2b68e91b5b94880d60
This commit is contained in:
John Machado 2020-09-06 08:54:23 +05:30 committed by gbsbuild
parent a3fe3ac794
commit db62cba953
1 changed files with 2 additions and 2 deletions

View File

@ -71,8 +71,8 @@ namespace GmmLib
public:
HANDLE BBQueueHandle;
uint64_t BBFence;
SyncInfoLin() {}
SyncInfoLin(HANDLE Handle, uint64_t Fence) {}
SyncInfoLin() : BBQueueHandle(NULL), BBFence(0) {}
SyncInfoLin(HANDLE Handle, uint64_t Fence) : BBQueueHandle(Handle), BBFence(Fence) {}
};
typedef class SyncInfoLin SyncInfo;