From eabab06f66f0c002c2fb7ca5f462cce70ec2dd11 Mon Sep 17 00:00:00 2001 From: henrykotze Date: Wed, 29 Nov 2023 13:06:43 +0200 Subject: [PATCH] codecheck passed Signed-off-by: henrykotze --- src/AirFlow.cc | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/AirFlow.cc b/src/AirFlow.cc index 6034f806c..c6dac70b9 100644 --- a/src/AirFlow.cc +++ b/src/AirFlow.cc @@ -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; }