[llvm-objcopy][MachO] Fix code formatting

Apply clang-format to MachOObjcopy.cpp. NFC.

Test plan: make check-all
This commit is contained in:
Alexander Shaposhnikov 2020-05-17 20:46:17 -07:00
parent 455ccde137
commit a7abe8dd29
1 changed files with 3 additions and 1 deletions

View 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) {