Skip to content

Commit

Permalink
codecheck passed
Browse files Browse the repository at this point in the history
Signed-off-by: henrykotze <henry@flycloudline.com>
  • Loading branch information
henrykotze committed Nov 29, 2023
1 parent 9e8da4b commit eabab06
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/AirFlow.cc
Original file line number Diff line number Diff line change
Expand Up @@ -90,8 +90,10 @@ bool AirFlow::operator!=(const AirFlow &_air) const
//////////////////////////////////////////////////
bool AirFlow::operator==(const AirFlow &_air) const
{
bool speed_noise = this->dataPtr->speed_noise == _air.dataPtr->speed_noise;
bool dir_noise = this->dataPtr->direction_noise == _air.dataPtr->direction_noise;
bool speed_noise = this->dataPtr->speed_noise ==
_air.dataPtr->speed_noise;
bool dir_noise = this->dataPtr->direction_noise ==
_air.dataPtr->direction_noise;

return speed_noise && dir_noise;
}
Expand Down

0 comments on commit eabab06

Please sign in to comment.