Refactoring.

Code style.
develop
Roman Telezhynskyi 2024-03-16 12:19:10 +02:00
parent 62efe1dd8a
commit 75c329a08e
1 changed files with 3 additions and 4 deletions

View File

@ -249,14 +249,13 @@ static inline auto DRW_FuzzyComparePossibleNulls(double p1, double p2) -> bool
{
return qFuzzyIsNull(p2);
}
if (qFuzzyIsNull(p2))
{
return false;
}
else
{
return qFuzzyCompare(p1, p2);
}
return qFuzzyCompare(p1, p2);
}
//! Class to handle 3D coordinate point