Skip to content

Commit

Permalink
fix warning, fix missing include
Browse files Browse the repository at this point in the history
Signed-off-by: Guillaume W. Bres <[email protected]>
  • Loading branch information
gwbres committed Dec 26, 2023
1 parent bb6b1b2 commit 709db17
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion rinex/src/antex/record.rs
Original file line number Diff line number Diff line change
Expand Up @@ -423,7 +423,7 @@ impl Merge for Record {
for (lhs_ant, subset) in self.iter_mut() {
if lhs_ant == antenna {
has_ant |= true;
for (lhs_carrier, lhs_freq_data) in subset.iter_mut() {
for (lhs_carrier, _) in subset.iter_mut() {
if lhs_carrier == carrier {
has_signal |= true;
break;
Expand Down
2 changes: 1 addition & 1 deletion rinex/src/header.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ use crate::{
ionex, leap,
linspace::Linspace,
meteo,
navigation::IonMessage,
navigation::{IonMessage, KbModel},
observation,
observation::Crinex,
reader::BufferedReader,
Expand Down

0 comments on commit 709db17

Please sign in to comment.