From: Alexander Shaposhnikov Date: Mon, 18 May 2020 03:46:17 +0000 (-0700) Subject: [llvm-objcopy][MachO] Fix code formatting X-Git-Tag: llvmorg-12-init~5819 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=a7abe8dd297baa3843f3623ae293525986649247;p=platform%2Fupstream%2Fllvm.git [llvm-objcopy][MachO] Fix code formatting Apply clang-format to MachOObjcopy.cpp. NFC. Test plan: make check-all --- 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) {