Skip to content

Commit dcac742

Browse files
authored
Format
1 parent 533a42f commit dcac742

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

clang/lib/Basic/Sanitizers.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,7 @@ SanitizerMaskCutoffs::getAllScaled(unsigned ScalingFactor) const {
5252
for (unsigned int i = 0; i < SanitizerKind::SO_Count; ++i) {
5353
auto C = (*this)[i];
5454
if (C.has_value()) {
55-
ScaledCutoffs.push_back(
56-
lround(std::clamp(*C, 0.0, 1.0) * ScalingFactor));
55+
ScaledCutoffs.push_back(lround(std::clamp(*C, 0.0, 1.0) * ScalingFactor));
5756
AnyCutoff = true;
5857
} else {
5958
ScaledCutoffs.push_back(0);

0 commit comments

Comments
 (0)