Skip to content

Commit 89b7945

Browse files
committed
Change type of iterator index
Signed-off-by: Jorge J. Perez <[email protected]>
1 parent 5042fae commit 89b7945

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/fastdds/rtps/common/InstanceHandle.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -334,7 +334,7 @@ inline std::istream& operator >>(
334334

335335
iHandle.value[0u] = static_cast<octet>(hex);
336336

337-
for (int i = 1; i < 16; ++i)
337+
for (uint8_t i = 1; i < 16; ++i)
338338
{
339339
input >> point >> hex;
340340
if ( point != '.' || hex > 255 )

0 commit comments

Comments
 (0)