Skip to content

Commit f4c3614

Browse files
committed
reformat clangformat suppression
1 parent 87a2240 commit f4c3614

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed

Framework/Algorithms/src/CompareWorkspaces.cpp

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1108,12 +1108,10 @@ void CompareWorkspaces::doPeaksComparison(PeaksWorkspace_sptr tws1, PeaksWorkspa
11081108
mismatch = !withinRelativeTolerance(s1, s2, tolerance);
11091109
// Q: whould we not also compare the vectors?
11101110
} else {
1111-
// clang-format off
1112-
mismatch = !withinAbsoluteTolerance(s1, s2, tolerance) ||
1113-
!withinAbsoluteTolerance(v1[0], v2[0], tolerance) ||
1114-
!withinAbsoluteTolerance(v1[1], v2[1], tolerance) ||
1115-
!withinAbsoluteTolerance(v1[2], v2[2], tolerance);
1116-
// clang-format on
1111+
mismatch = !withinAbsoluteTolerance(s1, s2, tolerance) || //
1112+
!withinAbsoluteTolerance(v1[0], v2[0], tolerance) || //
1113+
!withinAbsoluteTolerance(v1[1], v2[1], tolerance) || //
1114+
!withinAbsoluteTolerance(v1[2], v2[2], tolerance); //
11171115
}
11181116
if (mismatch) {
11191117
g_log.notice(name);

0 commit comments

Comments
 (0)