[llvm-objcopy][MachO] Fix code formatting
authorAlexander Shaposhnikov <alexshap@fb.com>
Mon, 18 May 2020 03:46:17 +0000 (20:46 -0700)
committerAlexander Shaposhnikov <alexshap@fb.com>
Mon, 18 May 2020 03:46:17 +0000 (20:46 -0700)
Apply clang-format to MachOObjcopy.cpp. NFC.

Test plan: make check-all

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

index c274374..be44fdb 100644 (file)
@@ -21,7 +21,9 @@ using namespace object;
 using SectionPred = std::function<bool(const std::unique_ptr<Section> &Sec)>;
 
 static Error removeSections(const CopyConfig &Config, Object &Obj) {
-  SectionPred RemovePred = [](const std::unique_ptr<Section> &) { return false; };
+  SectionPred RemovePred = [](const std::unique_ptr<Section> &) {
+    return false;
+  };
 
   if (!Config.ToRemove.empty()) {
     RemovePred = [&Config, RemovePred](const std::unique_ptr<Section> &Sec) {