Skip to content

Commit

Permalink
Added cast to remove warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
SMorettini committed Jan 11, 2024
1 parent 31737a2 commit 6d4c751
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Svc/RateGroupDriver/test/ut/RateGroupDriverTester.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ void connectPorts(Svc::RateGroupDriver& impl, Svc::RateGroupDriverImplTester& te
TEST(RateGroupDriverTest,NominalSchedule) {

Svc::RateGroupDriver::DividerSet dividersSet{};
for(FwIndexType i=0; i<Svc::RateGroupDriver::DIVIDER_SIZE; i++)
for(FwIndexType i=0; i<static_cast<FwIndexType>(Svc::RateGroupDriver::DIVIDER_SIZE); i++)
{
dividersSet.dividers[i] = {i+1, i%2};
}
Expand Down

0 comments on commit 6d4c751

Please sign in to comment.