Skip to content

Commit 683c700

Browse files
committed
clang-format
1 parent 7394f18 commit 683c700

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

lld/ELF/ICF.cpp

+3-1
Original file line numberDiff line numberDiff line change
@@ -432,8 +432,10 @@ void ICF<ELFT>::forEachClassRange(size_t begin, size_t end,
432432
}
433433

434434
// Call Fn on each equivalence class.
435+
435436
template <class ELFT>
436-
void ICF<ELFT>::parallelForEachClass(llvm::function_ref<void(size_t, size_t)> fn) {
437+
void ICF<ELFT>::parallelForEachClass(
438+
llvm::function_ref<void(size_t, size_t)> fn) {
437439
// If threading is disabled or the number of sections are
438440
// too small to use threading, call Fn sequentially.
439441
if (parallel::strategy.ThreadsRequested == 1 || sections.size() < 1024) {

0 commit comments

Comments
 (0)