Skip to content

Commit 75c0e1f

Browse files
committed
Remove unnecessary braces
1 parent 5203418 commit 75c0e1f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

libc/benchmarks/MemorySizeDistributions.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -185,10 +185,10 @@ ArrayRef<MemorySizeDistribution> getMemcmpSizeDistributions() {
185185
MemorySizeDistribution
186186
getDistributionOrDie(ArrayRef<MemorySizeDistribution> Distributions,
187187
StringRef Name) {
188-
for (const auto &MSD : Distributions) {
188+
for (const auto &MSD : Distributions)
189189
if (MSD.Name == Name)
190190
return MSD;
191-
}
191+
192192
std::string Message;
193193
raw_string_ostream Stream(Message);
194194
Stream << "Unknown MemorySizeDistribution '" << Name

0 commit comments

Comments
 (0)