Remove irrelevant comments.

This commit is contained in:
Jared Boone 2016-01-15 16:00:21 -08:00
parent cb5f563b92
commit 8fd8815e95
2 changed files with 0 additions and 5 deletions

View file

@ -176,14 +176,10 @@ DateTime Packet::datetime(const size_t start_bit) const {
}
Latitude Packet::latitude(const size_t start_bit) const {
// Shifting and dividing is to sign-extend the source field.
// TODO: There's probably a more elegant way to do it.
return field_.read(start_bit, 27);
}
Longitude Packet::longitude(const size_t start_bit) const {
// Shifting and dividing is to sign-extend the source field.
// TODO: There's probably a more elegant way to do it.
return field_.read(start_bit, 28);
}