From a7abe8dd297baa3843f3623ae293525986649247 Mon Sep 17 00:00:00 2001 From: Alexander Shaposhnikov Date: Sun, 17 May 2020 20:46:17 -0700 Subject: [PATCH] [llvm-objcopy][MachO] Fix code formatting Apply clang-format to MachOObjcopy.cpp. NFC. Test plan: make check-all --- llvm/tools/llvm-objcopy/MachO/MachOObjcopy.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/llvm/tools/llvm-objcopy/MachO/MachOObjcopy.cpp b/llvm/tools/llvm-objcopy/MachO/MachOObjcopy.cpp index c274374..be44fdb 100644 --- a/llvm/tools/llvm-objcopy/MachO/MachOObjcopy.cpp +++ b/llvm/tools/llvm-objcopy/MachO/MachOObjcopy.cpp @@ -21,7 +21,9 @@ using namespace object; using SectionPred = std::function &Sec)>; static Error removeSections(const CopyConfig &Config, Object &Obj) { - SectionPred RemovePred = [](const std::unique_ptr
&) { return false; }; + SectionPred RemovePred = [](const std::unique_ptr
&) { + return false; + }; if (!Config.ToRemove.empty()) { RemovePred = [&Config, RemovePred](const std::unique_ptr
&Sec) { -- 2.7.4