Skip to content

Commit

Permalink
rm unneeded TODOs
Browse files Browse the repository at this point in the history
  • Loading branch information
syvb committed Dec 6, 2022
1 parent b04c181 commit 327e22e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions extension/src/state_aggregate.rs
Original file line number Diff line number Diff line change
Expand Up @@ -778,16 +778,16 @@ pub fn interpolated_state_periods<'a>(
#[derive(Clone, Debug, Deserialize, Eq, FlatSerializable, PartialEq, Serialize)]
#[repr(C)]
pub struct DurationInState {
duration: i64, // TODO BRIAN is i64 or u64 the right type
duration: i64,
state_beg: u32,
state_end: u32,
}

#[derive(Clone, Debug, Deserialize, Eq, FlatSerializable, PartialEq, Serialize)]
#[repr(C)]
pub struct TimeInState {
start_time: i64, // TODO BRIAN is i64 or u64 the right type
end_time: i64, // TODO BRIAN is i64 or u64 the right type
start_time: i64,
end_time: i64,
state_beg: u32,
state_end: u32,
}
Expand Down

0 comments on commit 327e22e

Please sign in to comment.