1
0
Fork 0

remove extranious stream read

This commit is contained in:
Kevin Matz 2021-09-17 09:35:35 -04:00
parent 6a24a9ed57
commit b8a113759b
1 changed files with 0 additions and 2 deletions

View File

@ -40,8 +40,6 @@ void address_type::iStream(PDU::Stream stream)
data_type = static_cast<data_type_t>((byte >> 4) & 0b11);
relative = byte & 0b01000000;
z_reserved = byte & 0b10000000;
*stream >> byte;
}