Skip to content

Commit e16adaf

Browse files
author
henrykotze
committed
codecheck passed
1 parent 32dc472 commit e16adaf

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/AirFlow.cc

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,8 +90,10 @@ bool AirFlow::operator!=(const AirFlow &_air) const
9090
//////////////////////////////////////////////////
9191
bool AirFlow::operator==(const AirFlow &_air) const
9292
{
93-
bool speed_noise = this->dataPtr->speed_noise == _air.dataPtr->speed_noise;
94-
bool dir_noise = this->dataPtr->direction_noise == _air.dataPtr->direction_noise;
93+
bool speed_noise = this->dataPtr->speed_noise ==
94+
_air.dataPtr->speed_noise;
95+
bool dir_noise = this->dataPtr->direction_noise ==
96+
_air.dataPtr->direction_noise;
9597

9698
return speed_noise && dir_noise;
9799
}

0 commit comments

Comments
 (0)