We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 32dc472 commit e16adafCopy full SHA for e16adaf
src/AirFlow.cc
@@ -90,8 +90,10 @@ bool AirFlow::operator!=(const AirFlow &_air) const
90
//////////////////////////////////////////////////
91
bool AirFlow::operator==(const AirFlow &_air) const
92
{
93
- bool speed_noise = this->dataPtr->speed_noise == _air.dataPtr->speed_noise;
94
- bool dir_noise = this->dataPtr->direction_noise == _air.dataPtr->direction_noise;
+ bool speed_noise = this->dataPtr->speed_noise ==
+ _air.dataPtr->speed_noise;
95
+ bool dir_noise = this->dataPtr->direction_noise ==
96
+ _air.dataPtr->direction_noise;
97
98
return speed_noise && dir_noise;
99
}
0 commit comments