Skip to content

Commit a7abe8d

Browse files
author
Alexander Shaposhnikov
committed
[llvm-objcopy][MachO] Fix code formatting
Apply clang-format to MachOObjcopy.cpp. NFC. Test plan: make check-all
1 parent 455ccde commit a7abe8d

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

llvm/tools/llvm-objcopy/MachO/MachOObjcopy.cpp

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,9 @@ using namespace object;
2121
using SectionPred = std::function<bool(const std::unique_ptr<Section> &Sec)>;
2222

2323
static Error removeSections(const CopyConfig &Config, Object &Obj) {
24-
SectionPred RemovePred = [](const std::unique_ptr<Section> &) { return false; };
24+
SectionPred RemovePred = [](const std::unique_ptr<Section> &) {
25+
return false;
26+
};
2527

2628
if (!Config.ToRemove.empty()) {
2729
RemovePred = [&Config, RemovePred](const std::unique_ptr<Section> &Sec) {

0 commit comments

Comments
 (0)