Skip to content

Commit fed7229

Browse files
fix build
Signed-off-by: Tikhomirova, Kseniya <[email protected]>
1 parent 35969a0 commit fed7229

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sycl/source/detail/program_manager/program_manager.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -836,7 +836,7 @@ void callFuncForAllSubsets(Func &FuncToCall,
836836

837837
auto it = DeviceSet.begin();
838838
std::advance(it, index);
839-
for (int i = index; i < DeviceSet.size(); i++, it++) {
839+
for (size_t i = index; i < DeviceSet.size(); i++, it++) {
840840
auto InsertedEntry = Subset.insert(Subset.end(), *it);
841841
callFuncForAllSubsets(FuncToCall, DeviceSet, Subset, i + 1);
842842
Subset.erase(InsertedEntry);

0 commit comments

Comments
 (0)